pub struct ValueDroppedError { /* private fields */ }
Expand description
An error that can occur when trying to use a value that has been dropped.
Implementations§
Trait Implementations§
Source§impl Clone for ValueDroppedError
impl Clone for ValueDroppedError
Source§fn clone(&self) -> ValueDroppedError
fn clone(&self) -> ValueDroppedError
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 ValueDroppedError
impl Debug for ValueDroppedError
Source§impl Display for ValueDroppedError
impl Display for ValueDroppedError
Source§impl Error for ValueDroppedError
impl Error for ValueDroppedError
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 ValueDroppedError
impl PartialEq for ValueDroppedError
impl Copy for ValueDroppedError
impl StructuralPartialEq for ValueDroppedError
Auto Trait Implementations§
impl Freeze for ValueDroppedError
impl RefUnwindSafe for ValueDroppedError
impl Send for ValueDroppedError
impl Sync for ValueDroppedError
impl Unpin for ValueDroppedError
impl UnwindSafe for ValueDroppedError
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