Struct sozu_command_lib::proxy::HttpsListener[][src]

pub struct HttpsListener {
Show fields pub front: SocketAddr, pub public_address: Option<SocketAddr>, pub answer_404: String, pub answer_503: String, pub versions: Vec<TlsVersion>, pub cipher_list: String, pub rustls_cipher_list: Vec<String>, pub tls_provider: TlsProvider, pub expect_proxy: bool, pub sticky_name: String, pub certificate: Option<String>, pub certificate_chain: Vec<String>, pub key: Option<String>,
}

Fields

front: SocketAddrpublic_address: Option<SocketAddr>answer_404: Stringanswer_503: Stringversions: Vec<TlsVersion>cipher_list: Stringrustls_cipher_list: Vec<String>tls_provider: TlsProviderexpect_proxy: boolsticky_name: Stringcertificate: Option<String>certificate_chain: Vec<String>key: Option<String>

Trait Implementations

impl Clone for HttpsListener[src]

impl Debug for HttpsListener[src]

impl Default for HttpsListener[src]

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

impl Eq for HttpsListener[src]

impl Hash for HttpsListener[src]

impl PartialEq<HttpsListener> for HttpsListener[src]

impl Serialize for HttpsListener[src]

impl StructuralEq for HttpsListener[src]

impl StructuralPartialEq for HttpsListener[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Reset for T where
    T: Default + Clone
[src]

impl<T> Reset for T where
    T: Default + Clone
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.