pub struct ItemNotFound;
Expand description
Error returned when trying to remove an item from the player that is not in their inventory.
Trait Implementations§
Source§impl Clone for ItemNotFound
impl Clone for ItemNotFound
Source§fn clone(&self) -> ItemNotFound
fn clone(&self) -> ItemNotFound
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ItemNotFound
impl Debug for ItemNotFound
Source§impl Display for ItemNotFound
impl Display for ItemNotFound
Source§impl Error for ItemNotFound
impl Error for ItemNotFound
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 ItemNotFound
impl RefUnwindSafe for ItemNotFound
impl Send for ItemNotFound
impl Sync for ItemNotFound
impl Unpin for ItemNotFound
impl UnwindSafe for ItemNotFound
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