[][src]Struct tonic::transport::channel::ClientTlsConfig

pub struct ClientTlsConfig { /* fields omitted */ }
This is supported on feature="transport" and feature="tls" only.

Configures TLS settings for endpoints.

Implementations

impl ClientTlsConfig[src]

pub fn new() -> Self[src]

This is supported on feature="transport" and feature="tls" only.

Creates a new ClientTlsConfig using Rustls.

pub fn domain_name(self, domain_name: impl Into<String>) -> Self[src]

This is supported on feature="transport" and feature="tls" only.

Sets the domain name against which to verify the server's TLS certificate.

This has no effect if rustls_client_config is used to configure Rustls.

pub fn ca_certificate(self, ca_certificate: Certificate) -> Self[src]

This is supported on feature="transport" and feature="tls" only.

Sets the CA Certificate against which to verify the server's TLS certificate.

This has no effect if rustls_client_config is used to configure Rustls.

pub fn identity(self, identity: Identity) -> Self[src]

This is supported on feature="transport" and feature="tls" only.

Sets the client identity to present to the server.

This has no effect if rustls_client_config is used to configure Rustls.

pub fn rustls_client_config(self, config: ClientConfig) -> Self[src]

This is supported on feature="transport" and feature="tls" only.

Use options specified by the given ClientConfig to configure TLS.

This overrides all other TLS options set via other means.

Trait Implementations

impl Clone for ClientTlsConfig[src]

impl Debug for ClientTlsConfig[src]

Auto Trait Implementations

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>, 

impl<T> WithSubscriber for T[src]