pub enum Malformed {
Short,
Width,
Length,
Order,
}Expand description
Why an intset from somewhere else was refused.
Variants§
Short
Shorter than the eight byte header.
Width
The width is not 2, 4 or 8.
Length
The count and the width do not account for the bytes that arrived.
Order
The members are not in ascending order, or one appears twice.
Trait Implementations§
impl Copy for Malformed
impl Eq for Malformed
impl StructuralPartialEq for Malformed
Auto Trait Implementations§
impl Freeze for Malformed
impl RefUnwindSafe for Malformed
impl Send for Malformed
impl Sync for Malformed
impl Unpin for Malformed
impl UnsafeUnpin for Malformed
impl UnwindSafe for Malformed
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