mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
Merge pull request #382 from bertonha/deprecated-description
This commit is contained in:
commit
ebfe76cdb6
@ -100,15 +100,12 @@ enum CreationError {
|
|||||||
|
|
||||||
impl fmt::Display for CreationError {
|
impl fmt::Display for CreationError {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
f.write_str((self as &dyn error::Error).description())
|
let description = match *self {
|
||||||
|
CreationError::Negative => "Number is negative",
|
||||||
|
CreationError::Zero => "Number is zero",
|
||||||
|
};
|
||||||
|
f.write_str(description)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl error::Error for CreationError {
|
impl error::Error for CreationError {}
|
||||||
fn description(&self) -> &str {
|
|
||||||
match *self {
|
|
||||||
CreationError::Negative => "Negative",
|
|
||||||
CreationError::Zero => "Zero",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user