Struct pdu::IcmpPdu[][src]

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

Represents an ICMP payload

Implementations

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

pub fn new(buffer: &'a [u8]) -> Result<Self>[src]

Constructs a IcmpPdu backed by the provided buffer

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

Returns a reference to the entire underlying buffer that was provided during construction

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

Returns the slice of the underlying buffer that contains this PDU

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

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

pub fn checksum(&'a self) -> u16[src]

pub fn computed_checksum(&'a self, ip: &Ip<'_>) -> u16[src]

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

Trait Implementations

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

impl<'a> Copy for IcmpPdu<'a>[src]

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for IcmpPdu<'a>

impl<'a> Send for IcmpPdu<'a>

impl<'a> Sync for IcmpPdu<'a>

impl<'a> Unpin for IcmpPdu<'a>

impl<'a> UnwindSafe for IcmpPdu<'a>

Blanket Implementations

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

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

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

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.