[][src]Enum etherparse::IpHeader

pub enum IpHeader {
    Version4(Ipv4Header),
    Version6(Ipv6Header),
}

Internet protocol headers version 4 & 6

Variants

Version4(Ipv4Header)Version6(Ipv6Header)

Methods

impl IpHeader[src]

pub fn read_from_slice(slice: &[u8]) -> Result<(IpHeader, &[u8]), ReadError>[src]

Read an IpvHeader from a slice and return the header & unused parts of the slice.

pub fn read<T: Read + Seek + Sized>(
    reader: &mut T
) -> Result<IpHeader, ReadError>
[src]

Reads an IP (v4 or v6) header from the current position.

pub fn write<T: Write + Sized>(&self, writer: &mut T) -> Result<(), WriteError>[src]

Writes an IP (v4 or v6) header to the current position

Trait Implementations

impl Clone for IpHeader[src]

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

Performs copy-assignment from source. Read more

impl Eq for IpHeader[src]

impl PartialEq<IpHeader> for IpHeader[src]

impl Debug for IpHeader[src]

Auto Trait Implementations

impl Send for IpHeader

impl Sync for IpHeader

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]