pub type ParseMacAddrError = ParseError<6>;Expand description
Represents an error that occurred while parsing MacAddr.
Aliased Type§
pub enum ParseMacAddrError {
InvalidLength(usize),
UnexpectedSeparator {
expected: u8,
actual: u8,
},
InvalidSeparator(u8),
InvalidHexDigit([u8; 2]),
}