[][src]Struct quinn::ClientConfigBuilder

pub struct ClientConfigBuilder { /* fields omitted */ }

Helper for creating new outgoing connections.

Methods

impl ClientConfigBuilder
[src]

pub fn new() -> Self
[src]

Create a new builder with default options set.

pub fn add_certificate_authority(
    &mut self,
    cert: Certificate
) -> Result<&mut Self, EndpointError>
[src]

Add a trusted certificate authority.

For more advanced/less secure certificate verification, construct a ClientConfig manually and use rustls's dangerous_configuration feature to override the certificate verifier.

pub fn enable_keylog(&mut self) -> &mut Self
[src]

Enable NSS-compatible cryptographic key logging to the SSLKEYLOGFILE environment variable.

Useful for debugging encrypted communications with protocol analyzers such as Wireshark.

pub fn set_protocols(&mut self, protocols: &[&[u8]]) -> &mut Self
[src]

Set application-layer protocols to declare support for.

pub fn build(self) -> ClientConfig
[src]

Begin connecting from endpoint to addr.

Trait Implementations

impl Default for ClientConfigBuilder
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T