pub struct Builder { /* private fields */ }
Expand description
TLS configuration builder.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn server<I>(
&mut self,
key: PrivateKey,
certs: I
) -> Result<&mut Builder, Error> where
I: IntoIterator<Item = Certificate>,
pub fn server<I>(
&mut self,
key: PrivateKey,
certs: I
) -> Result<&mut Builder, Error> where
I: IntoIterator<Item = Certificate>,
Set server key and certificate chain.
Auto Trait Implementations
impl !RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl !UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more