[][src]Struct tonic::transport::server::ServerTlsConfig

pub struct ServerTlsConfig { /* fields omitted */ }
This is supported on crate features transport and tls only.

Configures TLS settings for servers.

Implementations

impl ServerTlsConfig[src]

pub fn new() -> Self[src]

Creates a new ServerTlsConfig.

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

Sets the Identity of the server.

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

Sets a certificate against which to validate client TLS certificates.

pub fn rustls_server_config(&mut self, config: ServerConfig) -> &mut Self

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

Use options specified by the given ServerConfig to configure TLS.

This overrides all other TLS options set via other means.

Trait Implementations

impl Clone for ServerTlsConfig[src]

impl Debug for ServerTlsConfig[src]

impl Default for ServerTlsConfig[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> 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]