pub enum Eui64LeafParseError {
TooShort(usize),
WrongDirectoryEntry,
}Expand description
The error to parse leaf entry with EUI64 data.
Variants§
TooShort(usize)
Insufficient data to parse, 8 bytes at least.
WrongDirectoryEntry
The entry is not for leaf.
Trait Implementations§
Source§impl Clone for Eui64LeafParseError
impl Clone for Eui64LeafParseError
Source§fn clone(&self) -> Eui64LeafParseError
fn clone(&self) -> Eui64LeafParseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Eui64LeafParseError
impl Debug for Eui64LeafParseError
Source§impl Display for Eui64LeafParseError
impl Display for Eui64LeafParseError
Source§impl PartialEq for Eui64LeafParseError
impl PartialEq for Eui64LeafParseError
impl Copy for Eui64LeafParseError
impl Eq for Eui64LeafParseError
impl StructuralPartialEq for Eui64LeafParseError
Auto Trait Implementations§
impl Freeze for Eui64LeafParseError
impl RefUnwindSafe for Eui64LeafParseError
impl Send for Eui64LeafParseError
impl Sync for Eui64LeafParseError
impl Unpin for Eui64LeafParseError
impl UnwindSafe for Eui64LeafParseError
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