pub struct TlsClientStreamBuilder(_);
Expand description
A Builder for the TlsClientStream
Implementations
sourceimpl TlsClientStreamBuilder
impl TlsClientStreamBuilder
sourcepub fn add_ca(&mut self, ca: X509)
pub fn add_ca(&mut self, ca: X509)
Add a custom trusted peer certificate or certificate authority.
If this is the ‘client’ then the ‘server’ must have it associated as it’s identity
, or have had the identity
signed by this certificate.
sourcepub fn add_ca_der(&mut self, ca_der: &[u8]) -> Result<()>
pub fn add_ca_der(&mut self, ca_der: &[u8]) -> Result<()>
Add a custom trusted peer certificate or certificate authority encoded as a (binary) DER-encoded X.509 certificate.
If this is the ‘client’ then the ‘server’ must have it associated as it’s identity
, or have had the identity
signed by this certificate.
sourcepub fn build(
self,
name_server: SocketAddr,
dns_name: String
) -> (Box<dyn Future<Item = TlsClientStream, Error = ProtoError> + Send>, BufDnsStreamHandle)
pub fn build(
self,
name_server: SocketAddr,
dns_name: String
) -> (Box<dyn Future<Item = TlsClientStream, Error = ProtoError> + Send>, BufDnsStreamHandle)
Creates a new TlsStream to the specified name_server
Arguments
name_server
- IP and Port for the remote DNS resolverdns_name
- The DNS name, Subject Public Key Info (SPKI) name, as associated to a certificate
Auto Trait Implementations
impl RefUnwindSafe for TlsClientStreamBuilder
impl Send for TlsClientStreamBuilder
impl Sync for TlsClientStreamBuilder
impl Unpin for TlsClientStreamBuilder
impl UnwindSafe for TlsClientStreamBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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