Trait hyper::server::accept::Accept   [−][src]
pub trait Accept {
    type Conn;
    type Error;
    fn poll_accept(
        self: Pin<&mut Self>, 
        cx: &mut Context<'_>
    ) -> Poll<Option<Result<Self::Conn, Self::Error>>>;
}Asynchronously accept incoming connections.
Associated Types
type Conn[src]
The connection type that can be accepted.
type Error[src]
The error type that can occur when accepting a connection.
Required methods
fn poll_accept(
    self: Pin<&mut Self>, 
    cx: &mut Context<'_>
) -> Poll<Option<Result<Self::Conn, Self::Error>>>[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Option<Result<Self::Conn, Self::Error>>>
Poll to accept the next connection.
Implementors
Loading content...