pub enum AfterMoveError {
InvalidMoveError,
NoCodesLeft,
}
Variants§
Trait Implementations§
Source§impl Clone for AfterMoveError
impl Clone for AfterMoveError
Source§fn clone(&self) -> AfterMoveError
fn clone(&self) -> AfterMoveError
Returns a duplicate 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 AfterMoveError
impl Debug for AfterMoveError
Source§impl Display for AfterMoveError
impl Display for AfterMoveError
Source§impl Error for AfterMoveError
impl Error for AfterMoveError
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 AfterMoveError
impl PartialEq for AfterMoveError
impl Copy for AfterMoveError
impl Eq for AfterMoveError
impl StructuralPartialEq for AfterMoveError
Auto Trait Implementations§
impl Freeze for AfterMoveError
impl RefUnwindSafe for AfterMoveError
impl Send for AfterMoveError
impl Sync for AfterMoveError
impl Unpin for AfterMoveError
impl UnwindSafe for AfterMoveError
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