[−][src]Struct net2::UdpBuilder
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]
pub fn new_v4() -> Result<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.
pub fn new_v6() -> Result<UdpBuilder>
[src]
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.
pub fn bind<T>(&self, addr: T) -> Result<UdpSocket> where
T: ToSocketAddrs,
[src]
T: ToSocketAddrs,
Binds this socket to the specified address.
This function directly corresponds to the bind(2) function on Windows and Unix.
impl UdpBuilder
[src]
pub fn ttl(&self, ttl: u32) -> Result<&Self>
[src]
Sets the value for the IP_TTL
option on this socket.
This is the same as TcpStreamExt::set_ttl
.
pub fn only_v6(&self, only_v6: bool) -> Result<&Self>
[src]
Sets the value for the IPV6_V6ONLY
option on this socket.
This is the same as TcpStream::only_v6
.
pub fn reuse_address(&self, reuse: bool) -> Result<&Self>
[src]
Set value for the SO_REUSEADDR
option on this socket.
This is the same as TcpBuilder::reuse_address
.
pub fn get_reuse_address(&self) -> Result<bool>
[src]
Check the SO_REUSEADDR
option on this socket.
pub fn take_error(&self) -> Result<Option<Error>>
[src]
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]
fn reuse_port(&self, reuse: bool) -> Result<&Self>
[src]
fn get_reuse_port(&self) -> Result<bool>
[src]
impl Debug for UdpBuilder
[src]
impl AsRawFd for UdpBuilder
[src]
impl FromRawFd for UdpBuilder
[src]
unsafe fn from_raw_fd(fd: c_int) -> UdpBuilder
[src]
Auto Trait Implementations
impl Send for UdpBuilder
impl Unpin for UdpBuilder
impl !Sync for UdpBuilder
impl UnwindSafe for UdpBuilder
impl !RefUnwindSafe for UdpBuilder
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,