Struct udp_socket::Transmit[][src]

pub struct Transmit {
    pub destination: SocketAddr,
    pub ecn: Option<EcnCodepoint>,
    pub contents: Vec<u8>,
    pub segment_size: Option<usize>,
    pub src_ip: Option<IpAddr>,
}

An outgoing packet

Fields

destination: SocketAddr

The socket this datagram should be sent to.

ecn: Option<EcnCodepoint>

Explicit congestion notification bits to set on the packet.

contents: Vec<u8>

Contents of the datagram.

segment_size: Option<usize>

The segment size if this transmission contains multiple datagrams. This is None if the transmit only contains a single datgram.

src_ip: Option<IpAddr>

Optional source IP address for the datagram.

Trait Implementations

impl Debug for Transmit[src]

Auto Trait Implementations

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, 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.