custom_error! {pub ConwayError
InvalidData {reason: String} = "ConwayError->InvalidData->{reason}",
AccessDenied{reason: String} = "ConwayError->AccessDenied->{reason}"
}
pub type ConwayResult<T> = ::std::result::Result<T, ConwayError>;
impl PartialEq for ConwayError {
fn eq(&self, other: &ConwayError) -> bool {
use ConwayError::*;
match *self {
InvalidData{reason: ref self_reason} => {
if let InvalidData{reason: ref other_reason} = *other {
self_reason == other_reason
} else {
false
}
}
AccessDenied{reason: ref self_reason} => {
if let AccessDenied{reason: ref other_reason} = *other {
self_reason == other_reason
} else {
false
}
}
}
}
}