[][src]Enum fluvio::config::TlsConfig

pub enum TlsConfig {
    Inline(TlsCerts),
    Files(TlsPaths),
}

Describes the TLS configuration either inline or via file paths

Variants

Inline(TlsCerts)

TLS client config with inline keys and certs

Files(TlsPaths)

TLS client config with paths to keys and certs

Implementations

impl TlsConfig[src]

pub fn domain(&self) -> &str[src]

Returns the domain which this TLS configuration is valid for

Trait Implementations

impl Clone for TlsConfig[src]

impl Debug for TlsConfig[src]

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

impl From<TlsCerts> for TlsConfig[src]

impl From<TlsConfig> for TlsPolicy[src]

impl From<TlsPaths> for TlsConfig[src]

impl PartialEq<TlsConfig> for TlsConfig[src]

impl Serialize for TlsConfig[src]

impl StructuralPartialEq for TlsConfig[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> Erased for T

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<T> WithSubscriber for T[src]