Enum den::MinifyError
source · pub enum MinifyError {
NewLarger,
NotMultiple,
SuccessiveUnknowns,
Zero,
}
Expand description
An error during Difference::minify
.
Variants§
NewLarger
New block size is larger than previous.
NotMultiple
Old block size is not a multiple of the new.
SuccessiveUnknowns
Successive unknown segments are not allowed and SHOULD never occur.
Zero
New block size is 0. That isn’t possible!
Trait Implementations§
source§impl Debug for MinifyError
impl Debug for MinifyError
source§impl PartialEq for MinifyError
impl PartialEq for MinifyError
source§fn eq(&self, other: &MinifyError) -> bool
fn eq(&self, other: &MinifyError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for MinifyError
impl StructuralPartialEq for MinifyError
Auto Trait Implementations§
impl Freeze for MinifyError
impl RefUnwindSafe for MinifyError
impl Send for MinifyError
impl Sync for MinifyError
impl Unpin for MinifyError
impl UnwindSafe for MinifyError
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