[][src]Struct smoltcp::wire::UdpRepr

pub struct UdpRepr<'a> {
    pub src_port: u16,
    pub dst_port: u16,
    pub payload: &'a [u8],
}

A high-level representation of an User Datagram Protocol packet.

Fields

src_port: u16dst_port: u16payload: &'a [u8]

Methods

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

pub fn parse<T: ?Sized>(
    packet: &Packet<&'a T>,
    src_addr: &IpAddress,
    dst_addr: &IpAddress,
    checksum_caps: &ChecksumCapabilities
) -> Result<Repr<'a>> where
    T: AsRef<[u8]>, 
[src]

Parse an User Datagram Protocol packet and return a high-level representation.

pub fn buffer_len(&self) -> usize[src]

Return the length of a packet that will be emitted from this high-level representation.

pub fn emit<T: ?Sized>(
    &self,
    packet: &mut Packet<&mut T>,
    src_addr: &IpAddress,
    dst_addr: &IpAddress,
    checksum_caps: &ChecksumCapabilities
) where
    T: AsRef<[u8]> + AsMut<[u8]>, 
[src]

Emit a high-level representation into an User Datagram Protocol packet.

Trait Implementations

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

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

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

impl<'a> Display for Repr<'a>[src]

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

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

impl<'a> StructuralEq for Repr<'a>[src]

impl<'a> StructuralPartialEq for Repr<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Repr<'a>

impl<'a> Send for Repr<'a>

impl<'a> Sync for Repr<'a>

impl<'a> Unpin for Repr<'a>

impl<'a> UnwindSafe for Repr<'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> ToString for T where
    T: Display + ?Sized
[src]

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.