minor error matching cleanup
This commit is contained in:
parent
cb9ae923f5
commit
1b411e31eb
|
@ -4,7 +4,6 @@ use std::io::{BufRead, BufReader};
|
|||
|
||||
pub type Result<T> = std::result::Result<T, Error>;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum Error {
|
||||
ReadError,
|
||||
BadFile,
|
||||
|
@ -19,8 +18,7 @@ impl fmt::Display for Error {
|
|||
match self {
|
||||
Self::ReadError => write!(f, "errors found"),
|
||||
Self::BadFile => write!(f, "invalid text"),
|
||||
Self::BadWrite(e) => write!(f, "{e}"),
|
||||
Self::BadPath(e) => write!(f, "{e}"),
|
||||
Self::BadWrite(e) | Self::BadPath(e) => write!(f, "{e}"),
|
||||
Self::BpError(e) => write!(f, "{e}"),
|
||||
Self::ParseError(e) => write!(f, "{e}"),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue