pub struct Acceptor { /* private fields */ }Expand description
Handle on a server-side connection before configuration is available.
The Acceptor allows the caller to provide a ServerConfig based on the ClientHello of
the incoming connection.
Implementations
sourceimpl Acceptor
 
impl Acceptor
sourcepub fn wants_read(&self) -> bool
 
pub fn wants_read(&self) -> bool
Returns true if the caller should call Connection::read_tls() as soon as possible.
For more details, refer to CommonState::wants_read().
Auto Trait Implementations
impl !RefUnwindSafe for Acceptor
impl Send for Acceptor
impl Sync for Acceptor
impl Unpin for Acceptor
impl !UnwindSafe for Acceptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more