pub struct DroppedError;
Expand description
Error signaling that an item was expected to be alive, but it was dropped.
See State::alive
for more information and examples.
Trait Implementations§
Source§impl Debug for DroppedError
impl Debug for DroppedError
Source§impl Display for DroppedError
impl Display for DroppedError
Source§impl Error for DroppedError
impl Error for DroppedError
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 DroppedError
impl PartialEq for DroppedError
impl Eq for DroppedError
impl StructuralPartialEq for DroppedError
Auto Trait Implementations§
impl Freeze for DroppedError
impl RefUnwindSafe for DroppedError
impl Send for DroppedError
impl Sync for DroppedError
impl Unpin for DroppedError
impl UnwindSafe for DroppedError
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