xarxa

Crates

git

Versions

default

Flavors

Skip to main content

Ipv6ExtHeader

Struct Ipv6ExtHeader 

Source
pub struct Ipv6ExtHeader<'a> { /* private fields */ }
Expand description

A read wrapper around an IPv6 extension header.

All IPv6 extension headers (except Fragment) share the same layout: a next header field, a length field in units of 8 octets not counting the first 8, and header-specific data.

Implementations§

Source§

impl<'a> ExtHeader<'a>

Source

pub const fn new_unchecked(buffer: &'a [u8]) -> ExtHeader<'a>

Imbue a raw octet buffer with extension header structure.

Source

pub fn new_checked(buffer: &'a [u8]) -> Result<ExtHeader<'a>>

Shorthand for a combination of new_unchecked and check_len.

Source

pub fn check_len(&self) -> Result<()>

Ensure that no accessor method will panic if called. Returns Err(Error) if the buffer is too short.

Source

pub fn next_header(&self) -> Protocol

Return the next header field.

Source

pub fn header_len(&self) -> usize

Return the length of the whole extension header, in bytes.

Source

pub fn data(&self) -> &'a [u8]

The header-specific data: for the Hop-by-Hop and Destination Options headers, the TLV-encoded options.

Trait Implementations§

Source§

impl<'a> Debug for ExtHeader<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Eq for ExtHeader<'a>

Source§

impl<'a> PartialEq for ExtHeader<'a>

Source§

fn eq(&self, other: &ExtHeader<'a>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'a> StructuralPartialEq for ExtHeader<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ExtHeader<'a>

§

impl<'a> RefUnwindSafe for ExtHeader<'a>

§

impl<'a> Send for ExtHeader<'a>

§

impl<'a> Sync for ExtHeader<'a>

§

impl<'a> Unpin for ExtHeader<'a>

§

impl<'a> UnsafeUnpin for ExtHeader<'a>

§

impl<'a> UnwindSafe for ExtHeader<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.