1 2 3 4 5 6 7 8 9
extern crate std; use ParseError; impl std::error::Error for ParseError { fn description(&self) -> &str { "UUID parse error" } }
1 2 3 4 5 6 7 8 9
extern crate std; use ParseError; impl std::error::Error for ParseError { fn description(&self) -> &str { "UUID parse error" } }