[][src]Struct etherparse::Ipv6HeaderSlice

pub struct Ipv6HeaderSlice<'a> { /* fields omitted */ }

A slice containing an ipv6 header of a network package.

Methods

impl<'a> Ipv6HeaderSlice<'a>[src]

pub fn from_slice(slice: &'a [u8]) -> Result<Ipv6HeaderSlice<'a>, ReadError>[src]

Creates a slice containing an ipv6 header (without header extensions).

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

Returns the slice containing the ipv6 header

pub fn version(&self) -> u8[src]

Read the "version" field from the slice (should be 6).

pub fn traffic_class(&self) -> u8[src]

Read the "traffic class" field from the slice.

pub fn flow_label(&self) -> u32[src]

Read the "flow label" field from the slice.

pub fn payload_length(&self) -> u16[src]

Read the "payload length" field from the slice. The length should contain the length of all extension headers and payload.

pub fn next_header(&self) -> u8[src]

Read the "next header" field from the slice. The next header value specifies what the next header or transport layer protocol is (see IpTrafficClass for a definitions of ids).

pub fn hop_limit(&self) -> u8[src]

Read the "hop limit" field from the slice. The hop limit specifies the number of hops the packet can take before it is discarded.

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

Returns a slice containing the IPv6 source address.

pub fn source_addr(&self) -> Ipv6Addr[src]

Return the ipv6 source address as an std::net::Ipv6Addr

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

Returns a slice containing the IPv6 destination address.

pub fn destination_addr(&self) -> Ipv6Addr[src]

Return the ipv6 destination address as an std::net::Ipv6Addr

pub fn to_header(&self) -> Ipv6Header[src]

Decode all the fields and copy the results to a Ipv6Header struct

Trait Implementations

impl<'a> Clone for Ipv6HeaderSlice<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Eq for Ipv6HeaderSlice<'a>[src]

impl<'a> PartialEq<Ipv6HeaderSlice<'a>> for Ipv6HeaderSlice<'a>[src]

impl<'a> Debug for Ipv6HeaderSlice<'a>[src]

Auto Trait Implementations

impl<'a> Send for Ipv6HeaderSlice<'a>

impl<'a> Sync for Ipv6HeaderSlice<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]