Trait Accept
pub trait Accept {
type Conn;
type Error;
// Required method
fn poll_accept(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Result<Self::Conn, Self::Error>>>;
}
Expand description
Asynchronously accept incoming connections.
Required Associated Types§
type Conn
type Conn
The connection type that can be accepted.
type Error
type Error
The error type that can occur when accepting a connection.