pub enum Error {
GuessingFormatFailed(String),
OpeningImageFailed(String),
}Expand description
Enum representing all possible values the application can fail.
Variants§
GuessingFormatFailed(String)
Failed to guess the image format.
OpeningImageFailed(String)
Failed to open image file.
Implementations§
Source§impl Error
impl Error
Sourcepub fn print_error<W: Write>(&self, err_out: &mut W)
pub fn print_error<W: Write>(&self, err_out: &mut W)
Get the executable exit value from an Error instance.
§Examples
let mut out = Vec::new();
Error::GuessingFormatFailed("not_image.rs".to_string()).print_error(&mut out);
assert_eq!(String::from_iter(out.iter().map(|&i| i as char)),
"Failed to guess format of \"not_image.rs\".\n".to_string());Sourcepub fn exit_value(&self) -> i32
pub fn exit_value(&self) -> i32
Get the executable exit value from an Error instance.
§Examples
assert_eq!(Error::GuessingFormatFailed("".to_string()).exit_value(), 1);
assert_eq!(Error::OpeningImageFailed("".to_string()).exit_value(), 2);Trait Implementations§
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more