Struct mobc_tonic::ClientConfig[][src]

pub struct ClientConfig {
    pub uri: String,
    pub domain: String,
    pub ca_cert: String,
    pub client_cert: Option<CertConfig>,
    pub pool_size: u8,
}

Fields

uri: String

URI client connect to

domain: String

domain the cert belongs to

ca_cert: String

CA cert

client_cert: Option<CertConfig>

client cert

pool_size: u8

pool size

Implementations

impl ClientConfig[src]

pub fn new(
    uri: &str,
    domain: &str,
    ca_cert: &str,
    client_cert: Option<CertConfig>,
    size: u8
) -> Self
[src]

Trait Implementations

impl Clone for ClientConfig[src]

impl Debug for ClientConfig[src]

impl<'de> Deserialize<'de> for ClientConfig[src]

impl Serialize for ClientConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> IntoRequest<T> for 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]