pub enum MonsterGrowlError {
InvalidId(InvalidId),
}Variants§
Trait Implementations§
Source§impl Debug for MonsterGrowlError
impl Debug for MonsterGrowlError
Source§impl Display for MonsterGrowlError
impl Display for MonsterGrowlError
Source§impl Error for MonsterGrowlError
impl Error for MonsterGrowlError
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<InvalidId> for MonsterGrowlError
impl From<InvalidId> for MonsterGrowlError
Source§impl From<MonsterGrowlError> for ApplyError
impl From<MonsterGrowlError> for ApplyError
Source§fn from(source: MonsterGrowlError) -> Self
fn from(source: MonsterGrowlError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MonsterGrowlError
impl RefUnwindSafe for MonsterGrowlError
impl Send for MonsterGrowlError
impl Sync for MonsterGrowlError
impl Unpin for MonsterGrowlError
impl UnsafeUnpin for MonsterGrowlError
impl UnwindSafe for MonsterGrowlError
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