pub struct RustlsAcceptor<A = DefaultAcceptor> { /* private fields */ }
Expand description
Tls acceptor using rustls.
Implementations§
Source§impl RustlsAcceptor
impl RustlsAcceptor
Sourcepub fn new(config: RustlsConfig) -> Self
pub fn new(config: RustlsConfig) -> Self
Create a new rustls acceptor.
Sourcepub fn handshake_timeout(self, val: Duration) -> Self
pub fn handshake_timeout(self, val: Duration) -> Self
Override the default TLS handshake timeout of 10 seconds, except during testing.
Source§impl<A> RustlsAcceptor<A>
impl<A> RustlsAcceptor<A>
Sourcepub fn acceptor<Acceptor>(self, acceptor: Acceptor) -> RustlsAcceptor<Acceptor>
pub fn acceptor<Acceptor>(self, acceptor: Acceptor) -> RustlsAcceptor<Acceptor>
Overwrite inner acceptor.
Trait Implementations§
Source§impl<A, I, S> Accept<I, S> for RustlsAcceptor<A>
impl<A, I, S> Accept<I, S> for RustlsAcceptor<A>
Source§impl<A: Clone> Clone for RustlsAcceptor<A>
impl<A: Clone> Clone for RustlsAcceptor<A>
Source§fn clone(&self) -> RustlsAcceptor<A>
fn clone(&self) -> RustlsAcceptor<A>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<A> Freeze for RustlsAcceptor<A>where
A: Freeze,
impl<A = DefaultAcceptor> !RefUnwindSafe for RustlsAcceptor<A>
impl<A> Send for RustlsAcceptor<A>where
A: Send,
impl<A> Sync for RustlsAcceptor<A>where
A: Sync,
impl<A> Unpin for RustlsAcceptor<A>where
A: Unpin,
impl<A = DefaultAcceptor> !UnwindSafe for RustlsAcceptor<A>
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
Mutably borrows from an owned value. Read more