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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for MinifyError