pub struct Pool { /* private fields */ }
Expand description
A pool of network addresses.
This does not directly correspond to anything in async_std
, however its
methods correspond to the several functions in async_std::net
.
Pool
implements Clone
, which creates new independent entities that
carry the full authority of the originals. This means that in a borrow
of a Pool
, the scope of the authority is not necessarily limited to
the scope of the borrow.
Similarly, the cap_net_ext::PoolExt
class allows creating “binder”
and “connecter” objects which represent capabilities to bind and
connect to addresses.
Implementations§
Source§impl Pool
impl Pool
Sourcepub async fn insert<A: ToSocketAddrs>(
&mut self,
addrs: A,
ambient_authority: AmbientAuthority,
) -> Result<()>
pub async fn insert<A: ToSocketAddrs>( &mut self, addrs: A, ambient_authority: AmbientAuthority, ) -> Result<()>
Add addresses to the pool.
§Ambient Authority
This function allows ambient access to any IP address.
Sourcepub fn insert_socket_addr(
&mut self,
addr: SocketAddr,
ambient_authority: AmbientAuthority,
)
pub fn insert_socket_addr( &mut self, addr: SocketAddr, ambient_authority: AmbientAuthority, )
Add a specific net::SocketAddr
to the pool.
§Ambient Authority
This function allows ambient access to any IP address.
Sourcepub fn insert_ip_net_port_any(
&mut self,
ip_net: IpNet,
ambient_authority: AmbientAuthority,
)
pub fn insert_ip_net_port_any( &mut self, ip_net: IpNet, ambient_authority: AmbientAuthority, )
Add a range of network addresses, accepting any port, to the pool.
Unlike insert_ip_net
, this function grants access to any requested
port.
§Ambient Authority
This function allows ambient access to any IP address.
Sourcepub fn insert_ip_net_port_range(
&mut self,
ip_net: IpNet,
ports_start: u16,
ports_end: Option<u16>,
ambient_authority: AmbientAuthority,
)
pub fn insert_ip_net_port_range( &mut self, ip_net: IpNet, ports_start: u16, ports_end: Option<u16>, ambient_authority: AmbientAuthority, )
Add a range of network addresses, accepting a range of ports, to the pool.
This grants access to the port range starting at ports_start
and,
if ports_end
is provided, ending before ports_end
.
§Ambient Authority
This function allows ambient access to any IP address.
Sourcepub fn insert_ip_net(
&mut self,
ip_net: IpNet,
port: u16,
ambient_authority: AmbientAuthority,
)
pub fn insert_ip_net( &mut self, ip_net: IpNet, port: u16, ambient_authority: AmbientAuthority, )
Add a range of network addresses with a specific port to the pool.
§Ambient Authority
This function allows ambient access to any IP address.
Sourcepub async fn bind_tcp_listener<A: ToSocketAddrs>(
&self,
addr: A,
) -> Result<TcpListener>
pub async fn bind_tcp_listener<A: ToSocketAddrs>( &self, addr: A, ) -> Result<TcpListener>
Creates a new TcpListener
which will be bound to the specified
address.
This corresponds to async_std::net::TcpListener::bind
.
Sourcepub async fn connect_tcp_stream<A: ToSocketAddrs>(
&self,
addr: A,
) -> Result<TcpStream>
pub async fn connect_tcp_stream<A: ToSocketAddrs>( &self, addr: A, ) -> Result<TcpStream>
Creates a new TCP stream connected to the specified address.
This corresponds to async_std::net::TcpStream::connect
.
Sourcepub async fn bind_udp_socket<A: ToSocketAddrs>(
&self,
addr: A,
) -> Result<UdpSocket>
pub async fn bind_udp_socket<A: ToSocketAddrs>( &self, addr: A, ) -> Result<UdpSocket>
Creates a UDP socket from the given address.
This corresponds to async_std::net::UdpSocket::bind
.
Sourcepub async fn send_to_udp_socket_addr<A: ToSocketAddrs>(
&self,
udp_socket: &UdpSocket,
buf: &[u8],
addr: A,
) -> Result<usize>
pub async fn send_to_udp_socket_addr<A: ToSocketAddrs>( &self, udp_socket: &UdpSocket, buf: &[u8], addr: A, ) -> Result<usize>
Sends data on the socket to the given address.
This corresponds to async_std::net::UdpSocket::send_to
.
Sourcepub async fn connect_udp_socket<A: ToSocketAddrs>(
&self,
udp_socket: &UdpSocket,
addr: A,
) -> Result<()>
pub async fn connect_udp_socket<A: ToSocketAddrs>( &self, udp_socket: &UdpSocket, addr: A, ) -> Result<()>
Connects the UDP socket to a remote address.
This corresponds to async_std::net::UdpSocket::connect
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pool
impl RefUnwindSafe for Pool
impl Send for Pool
impl Sync for Pool
impl Unpin for Pool
impl UnwindSafe for Pool
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)