pub struct Ethernet<'a> { /* private fields */ }
Expand description
An Ethernet frame.
On networks that support virtual LANs, the frame may include a VLAN tag after the source MAC address. Double-tagged frames (QinQ) are not yet supported.
Implementations§
Trait Implementations§
source§impl<'a> Packet<'a> for Ethernet<'a>
impl<'a> Packet<'a> for Ethernet<'a>
source§fn header_len(&self) -> usize
fn header_len(&self) -> usize
Offset from the beginning of the header to the start of the payload.
source§fn next_header_offset(&self) -> usize
fn next_header_offset(&self) -> usize
Offset from the beginning of the packet buffer to the start of the payload.
source§fn next_header(&self) -> Option<usize>
fn next_header(&self) -> Option<usize>
Next level IANA protocol number.
Auto Trait Implementations§
impl<'a> Freeze for Ethernet<'a>
impl<'a> RefUnwindSafe for Ethernet<'a>
impl<'a> !Send for Ethernet<'a>
impl<'a> !Sync for Ethernet<'a>
impl<'a> Unpin for Ethernet<'a>
impl<'a> UnwindSafe for Ethernet<'a>
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more