pub enum GenericError {
Unknown,
}Variants§
Unknown
Trait Implementations§
Source§impl Debug for GenericError
impl Debug for GenericError
Source§impl Display for GenericError
impl Display for GenericError
Source§impl Error for GenericError
impl Error for GenericError
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<'_derivative_strum> From<&'_derivative_strum GenericError> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum GenericError> for &'static str
Source§fn from(x: &'_derivative_strum GenericError) -> &'static str
fn from(x: &'_derivative_strum GenericError) -> &'static str
Converts to this type from the input type.
Source§impl From<GenericError> for &'static str
impl From<GenericError> for &'static str
Source§fn from(x: GenericError) -> &'static str
fn from(x: GenericError) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for GenericError
impl FromStr for GenericError
Source§impl PartialEq for GenericError
impl PartialEq for GenericError
Source§impl TryFrom<&str> for GenericError
impl TryFrom<&str> for GenericError
impl Eq for GenericError
impl StructuralPartialEq for GenericError
Auto Trait Implementations§
impl Freeze for GenericError
impl RefUnwindSafe for GenericError
impl Send for GenericError
impl Sync for GenericError
impl Unpin for GenericError
impl UnwindSafe for GenericError
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