pub enum InvalidMonsterFollowLimit {
Range(u32),
PeakOutOfBounds {
min: u32,
max: u32,
peak: u32,
},
BoundOrder {
min: u32,
max: u32,
},
}Variants§
Trait Implementations§
Source§impl Debug for InvalidMonsterFollowLimit
impl Debug for InvalidMonsterFollowLimit
Source§impl Display for InvalidMonsterFollowLimit
impl Display for InvalidMonsterFollowLimit
Source§impl Error for InvalidMonsterFollowLimit
impl Error for InvalidMonsterFollowLimit
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()
Auto Trait Implementations§
impl Freeze for InvalidMonsterFollowLimit
impl RefUnwindSafe for InvalidMonsterFollowLimit
impl Send for InvalidMonsterFollowLimit
impl Sync for InvalidMonsterFollowLimit
impl Unpin for InvalidMonsterFollowLimit
impl UnsafeUnpin for InvalidMonsterFollowLimit
impl UnwindSafe for InvalidMonsterFollowLimit
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