#[non_exhaustive]pub enum ParseEtherTypeError {
InvalidLength,
ParseInt(ParseIntError),
}Expand description
An error which can be returned when parsing an EtherType
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidLength
ParseInt(ParseIntError)
Trait Implementations§
Source§impl Clone for ParseEtherTypeError
impl Clone for ParseEtherTypeError
Source§fn clone(&self) -> ParseEtherTypeError
fn clone(&self) -> ParseEtherTypeError
Returns a copy 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 ParseEtherTypeError
impl Debug for ParseEtherTypeError
Source§impl Display for ParseEtherTypeError
impl Display for ParseEtherTypeError
Source§impl Error for ParseEtherTypeError
Available on crate feature std only.
impl Error for ParseEtherTypeError
Available on crate feature
std only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ParseEtherTypeError
impl PartialEq for ParseEtherTypeError
impl Eq for ParseEtherTypeError
impl StructuralPartialEq for ParseEtherTypeError
Auto Trait Implementations§
impl Freeze for ParseEtherTypeError
impl RefUnwindSafe for ParseEtherTypeError
impl Send for ParseEtherTypeError
impl Sync for ParseEtherTypeError
impl Unpin for ParseEtherTypeError
impl UnwindSafe for ParseEtherTypeError
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