Struct quinn::generic::ClientConfig[][src]

pub struct ClientConfig<S> where
    S: Session
{ pub transport: Arc<TransportConfig>, pub crypto: <S as Session>::ClientConfig, }

Configuration for outgoing connections

Default values should be suitable for most internet applications.

Fields

transport: Arc<TransportConfig>

Transport configuration to use

crypto: <S as Session>::ClientConfig

Cryptographic configuration to use

Implementations

impl ClientConfig<TlsSession>[src]

pub fn add_certificate_authority(
    &mut self,
    cert: Certificate
) -> Result<&mut ClientConfig<TlsSession>, Error>
[src]

Add a trusted certificate authority

Trait Implementations

impl<S> Clone for ClientConfig<S> where
    S: Session,
    <S as Session>::ClientConfig: Clone
[src]

impl<S> Debug for ClientConfig<S> where
    S: Session
[src]

impl<S> Default for ClientConfig<S> where
    S: Session
[src]

Auto Trait Implementations

impl<S> !RefUnwindSafe for ClientConfig<S>

impl<S> Send for ClientConfig<S> where
    <S as Session>::ClientConfig: Send

impl<S> Sync for ClientConfig<S> where
    <S as Session>::ClientConfig: Sync

impl<S> Unpin for ClientConfig<S> where
    <S as Session>::ClientConfig: Unpin

impl<S> !UnwindSafe for ClientConfig<S>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,