Struct sozu_command_lib::messages::HttpsListener[][src]

pub struct HttpsListener {
    pub front: SocketAddr,
    pub public_address: Option<IpAddr>,
    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,
}

Fields

Trait Implementations

impl Debug for HttpsListener
[src]

Formats the value using the given formatter. Read more

impl Clone for HttpsListener
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for HttpsListener
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for HttpsListener
[src]

impl Hash for HttpsListener
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for HttpsListener
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations