Struct etherparse::Ipv6HeaderSlice [−][src]
A slice containing an ipv6 header of a network package.
Implementations
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(&self) -> Ipv6HeaderSlice<'a>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a> Debug for Ipv6HeaderSlice<'a>
[src]
impl<'a> Eq for Ipv6HeaderSlice<'a>
[src]
impl<'a> PartialEq<Ipv6HeaderSlice<'a>> for Ipv6HeaderSlice<'a>
[src]
fn eq(&self, other: &Ipv6HeaderSlice<'a>) -> bool
[src]
fn ne(&self, other: &Ipv6HeaderSlice<'a>) -> bool
[src]
impl<'a> StructuralEq for Ipv6HeaderSlice<'a>
[src]
impl<'a> StructuralPartialEq for Ipv6HeaderSlice<'a>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Ipv6HeaderSlice<'a>
[src]
impl<'a> Send for Ipv6HeaderSlice<'a>
[src]
impl<'a> Sync for Ipv6HeaderSlice<'a>
[src]
impl<'a> Unpin for Ipv6HeaderSlice<'a>
[src]
impl<'a> UnwindSafe for Ipv6HeaderSlice<'a>
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,