[][src]Struct net2::UdpBuilder

pub struct UdpBuilder { /* fields omitted */ }

An "in progress" UDP socket which has not yet been connected.

Allows configuration of a socket before the socket is connected.

Methods

impl UdpBuilder
[src]

Constructs a new UdpBuilder with the AF_INET domain, the SOCK_DGRAM type, and with a protocol argument of 0.

Note that passing other kinds of flags or arguments can be done through the FromRaw{Fd,Socket} implementation.

Constructs a new UdpBuilder with the AF_INET6 domain, the SOCK_DGRAM type, and with a protocol argument of 0.

Note that passing other kinds of flags or arguments can be done through the FromRaw{Fd,Socket} implementation.

Binds this socket to the specified address.

This function directly corresponds to the bind(2) function on Windows and Unix.

impl UdpBuilder
[src]

Sets the value for the IP_TTL option on this socket.

This is the same as TcpStreamExt::set_ttl.

Sets the value for the IPV6_V6ONLY option on this socket.

This is the same as TcpStream::only_v6.

Set value for the SO_REUSEADDR option on this socket.

This is the same as TcpBuilder::reuse_address.

Check the SO_REUSEADDR option on this socket.

Get the value of the SO_ERROR option on this socket.

This will retrieve the stored error in the underlying socket, clearing the field in the process. This can be useful for checking errors between calls.

Trait Implementations

impl UnixUdpBuilderExt for UdpBuilder
[src]

Set value for the SO_REUSEPORT option on this socket. Read more

Check the value of the SO_REUSEPORT option on this socket.

impl Debug for UdpBuilder
[src]

Formats the value using the given formatter. Read more

impl FromRawFd for UdpBuilder
[src]

Constructs a new instance of Self from the given raw file descriptor. Read more

impl AsRawFd for UdpBuilder
[src]

Extracts the raw file descriptor. Read more

Auto Trait Implementations

impl Send for UdpBuilder

impl !Sync for UdpBuilder

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more