pub enum RawlerError {
Unsupported {
what: String,
model: String,
make: String,
mode: String,
},
DecoderFailed(String),
}Variants§
Implementations§
Source§impl RawlerError
impl RawlerError
Trait Implementations§
Source§impl Debug for RawlerError
impl Debug for RawlerError
Source§impl Display for RawlerError
impl Display for RawlerError
Source§impl Error for RawlerError
impl Error for RawlerError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<&String> for RawlerError
impl From<&String> for RawlerError
Source§impl From<&str> for RawlerError
impl From<&str> for RawlerError
Source§impl From<Arguments<'_>> for RawlerError
impl From<Arguments<'_>> for RawlerError
Source§impl From<Error> for RawlerError
impl From<Error> for RawlerError
Source§impl From<JfifError> for RawlerError
impl From<JfifError> for RawlerError
Source§impl From<String> for RawlerError
impl From<String> for RawlerError
Auto Trait Implementations§
impl Freeze for RawlerError
impl RefUnwindSafe for RawlerError
impl Send for RawlerError
impl Sync for RawlerError
impl Unpin for RawlerError
impl UnwindSafe for RawlerError
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> 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