pub struct NotTrackedError;
Expand description
Error returned when failing to query the status of an item with a key that is not known to DropTracker
.
See DropTracker::try_state
for more information and examples.
Trait Implementations§
Source§impl Debug for NotTrackedError
impl Debug for NotTrackedError
Source§impl Display for NotTrackedError
impl Display for NotTrackedError
Source§impl Error for NotTrackedError
impl Error for NotTrackedError
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 PartialEq for NotTrackedError
impl PartialEq for NotTrackedError
impl Eq for NotTrackedError
impl StructuralPartialEq for NotTrackedError
Auto Trait Implementations§
impl Freeze for NotTrackedError
impl RefUnwindSafe for NotTrackedError
impl Send for NotTrackedError
impl Sync for NotTrackedError
impl Unpin for NotTrackedError
impl UnwindSafe for NotTrackedError
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