Struct cap_std::net::Pool

source ·
pub struct Pool { /* private fields */ }
Available on non-WASI only.
Expand description

A pool of network addresses.

This does not directly correspond to anything in std, however its methods correspond to the several functions in std::net.

Implementations

Construct a new empty pool.

Add a range of network addresses with a specific port to the pool.

AmbientAuthority

This function allows ambient access to any IP address.

Add a specific net::SocketAddr to the pool.

AmbientAuthority

This function allows ambient access to any IP address.

Creates a new TcpListener which will be bound to the specified address.

This corresponds to std::net::TcpListener::bind.

Opens a TCP connection to a remote host.

This corresponds to std::net::TcpStream::connect.

Opens a TCP connection to a remote host with a timeout.

This corresponds to std::net::TcpStream::connect_timeout.

Creates a UDP socket from the given address.

This corresponds to std::net::UdpSocket::bind.

Sends data on the socket to the given address. On success, returns the number of bytes written.

This corresponds to std::net::UdpSocket::send_to.

Connects this UDP socket to a remote address, allowing the send and recv syscalls to be used to send data and also applies filters to only receive data from the specified address.

This corresponds to std::net::UdpSocket::connect.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.