pub trait Accept {
    type Conn;
    type Error;
    fn poll_accept(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<Option<Result<Self::Conn, Self::Error>>>; }
Expand description

Asynchronously accept incoming connections.

Associated Types

The connection type that can be accepted.

The error type that can occur when accepting a connection.

Required methods

Poll to accept the next connection.

Implementations on Foreign Types

Implementors