pub struct FromBitsError<T: BitFlag> { /* private fields */ }
Expand description

The error struct used by BitFlags::from_bits and the TryFrom implementation` for invalid values.

#[bitflags]
#[derive(Clone, Copy, Debug)]
#[repr(u8)]
enum MyFlags {
    A = 0b0001,
    B = 0b0010,
    C = 0b0100,
    D = 0b1000,
}

let result: Result<BitFlags<MyFlags>, _> = 0b10101u8.try_into();
assert!(result.is_err());
let error = result.unwrap_err();
assert_eq!(error.truncate(), MyFlags::C | MyFlags::A);
assert_eq!(error.invalid_bits(), 0b10000);

Implementations

Return the truncated result of the conversion.

Return the bits that didn’t correspond to any flags.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.