ParseEui64AddrError

Type Alias ParseEui64AddrError 

Source
pub type ParseEui64AddrError = ParseError<8>;
Expand description

Represents an error that occurred while parsing Eui64Addr.

Aliased Type§

pub enum ParseEui64AddrError {
    InvalidLength(usize),
    UnexpectedSeparator {
        expected: u8,
        actual: u8,
    },
    InvalidSeparator(u8),
    InvalidHexDigit([u8; 2]),
}

Variants§

§

InvalidLength(usize)

Returned when the input string has a invalid length.

§

UnexpectedSeparator

Returned when the input string has an invalid seperator.

Fields

§expected: u8

The expected separator.

§actual: u8

The actual separator.

§

InvalidSeparator(u8)

Returned when the input string has an unexpected separator.

§

InvalidHexDigit([u8; 2])

Invalid digit.