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

pub struct SocketAddrBuf { /* 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]

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.

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 Clone for SocketAddrBuf
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SocketAddrBuf
[src]