pub enum MismatchSide {
Target,
Base,
Result,
}Expand description
Which declared value or checksum failed to verify while applying a delta.
Variants§
Target
The declared target length did not match the reconstruction.
Base
The base checksum did not match.
Result
The reconstructed target checksum did not match.
Trait Implementations§
Source§impl Clone for MismatchSide
impl Clone for MismatchSide
Source§fn clone(&self) -> MismatchSide
fn clone(&self) -> MismatchSide
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 moreimpl Copy for MismatchSide
Source§impl Debug for MismatchSide
impl Debug for MismatchSide
Source§impl Display for MismatchSide
impl Display for MismatchSide
impl Eq for MismatchSide
Source§impl PartialEq for MismatchSide
impl PartialEq for MismatchSide
impl StructuralPartialEq for MismatchSide
Auto Trait Implementations§
impl Freeze for MismatchSide
impl RefUnwindSafe for MismatchSide
impl Send for MismatchSide
impl Sync for MismatchSide
impl Unpin for MismatchSide
impl UnsafeUnpin for MismatchSide
impl UnwindSafe for MismatchSide
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