Struct miow::net::SocketAddrBuf [] [src]

pub struct SocketAddrBuf {
    // some fields omitted
}

A type to represent a buffer in which a socket address will be stored.

This type is used with the recv_from_overlapped function on the UdpSocketExt trait to provide space for the overlapped I/O operation to fill in the address upon completion.

Methods

impl SocketAddrBuf
[src]

fn new() -> SocketAddrBuf

Creates a new blank socket address buffer.

This should be used before a call to recv_from_overlapped overlapped to create an instance to pass down.

fn to_socket_addr(&self) -> Option<SocketAddr>

Parses this buffer to return a standard socket address.

This function should be called after the buffer has been filled in with a call to recv_from_overlapped being completed. It will interpret the address filled in and return the standard socket address type.

If an error is encountered then None is returned.

Trait Implementations

impl Copy for SocketAddrBuf
[src]

impl Clone for SocketAddrBuf
[src]

fn clone(&self) -> SocketAddrBuf

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more