pub enum LinkingError {
Io(Error),
Image(ImageError),
Transaction(TransactionError),
LyricParse(LyricParseError),
}Variants§
Trait Implementations§
Source§impl Debug for LinkingError
impl Debug for LinkingError
Source§impl Display for LinkingError
impl Display for LinkingError
Source§impl Error for LinkingError
impl Error for LinkingError
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<Error> for LinkingError
impl From<Error> for LinkingError
Source§impl From<ImageError> for LinkingError
impl From<ImageError> for LinkingError
Source§fn from(source: ImageError) -> Self
fn from(source: ImageError) -> Self
Converts to this type from the input type.
Source§impl From<LyricParseError> for LinkingError
impl From<LyricParseError> for LinkingError
Source§fn from(source: LyricParseError) -> Self
fn from(source: LyricParseError) -> Self
Converts to this type from the input type.
Source§impl From<TransactionError> for LinkingError
impl From<TransactionError> for LinkingError
Source§fn from(source: TransactionError) -> Self
fn from(source: TransactionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkingError
impl !RefUnwindSafe for LinkingError
impl Send for LinkingError
impl Sync for LinkingError
impl Unpin for LinkingError
impl UnsafeUnpin for LinkingError
impl !UnwindSafe for LinkingError
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<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
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