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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)