pub struct Ipv6<'a> { /* private fields */ }
Expand description
An IPv6 packet.
Optional IPv6 extension headers are not parsed by default.
Implementations§
source§impl<'a> Ipv6<'a>
impl<'a> Ipv6<'a>
sourcepub fn traffic_class(&self) -> u8
pub fn traffic_class(&self) -> u8
Returns the traffic class (former name of differentiated services field).
sourcepub fn flow_label(&self) -> u32
pub fn flow_label(&self) -> u32
Returns the flow label.
sourcepub fn version_to_flow_label(&self) -> u32
pub fn version_to_flow_label(&self) -> u32
Returns the 32-bit field containing the version, traffic class, and flow label.
sourcepub fn payload_length(&self) -> u16
pub fn payload_length(&self) -> u16
Returns the length of the payload in bytes.
sourcepub fn next_header(&self) -> u8
pub fn next_header(&self) -> u8
Returns the encapsulated protocol identifier.
Trait Implementations§
source§impl<'a> Packet<'a> for Ipv6<'a>
impl<'a> Packet<'a> for Ipv6<'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 Ipv6<'a>
impl<'a> RefUnwindSafe for Ipv6<'a>
impl<'a> !Send for Ipv6<'a>
impl<'a> !Sync for Ipv6<'a>
impl<'a> Unpin for Ipv6<'a>
impl<'a> UnwindSafe for Ipv6<'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