1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
use std::io; use std::result; #[derive(Debug, Fail)] pub enum BitnessError { #[fail(display = "I/O error: {}", description)] IoError { description: String, }, #[fail(display = "{}", description)] Error { description: String, }, } impl From<String> for BitnessError { fn from(err: String) -> Self { BitnessError::Error { description: err, } } } impl From<io::Error> for BitnessError { fn from(err: io::Error) -> Self { BitnessError::IoError { description: err.to_string(), } } } pub type BitnessResult<T> = result::Result<T, BitnessError>;