pub enum CannotRepair {
HashMismatch {
computed: [u8; 16],
stored: [u8; 16],
},
}Variants§
Trait Implementations§
Source§impl Clone for CannotRepair
impl Clone for CannotRepair
Source§fn clone(&self) -> CannotRepair
fn clone(&self) -> CannotRepair
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CannotRepair
impl RefUnwindSafe for CannotRepair
impl Send for CannotRepair
impl Sync for CannotRepair
impl Unpin for CannotRepair
impl UnsafeUnpin for CannotRepair
impl UnwindSafe for CannotRepair
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