Struct sozu_command_lib::config::HttpFrontendConfig[][src]

pub struct HttpFrontendConfig {
    pub address: SocketAddr,
    pub hostname: String,
    pub path_begin: String,
    pub certificate: Option<String>,
    pub key: Option<String>,
    pub certificate_chain: Option<Vec<String>>,
}

Fields

Methods

impl HttpFrontendConfig
[src]

Trait Implementations

impl Debug for HttpFrontendConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for HttpFrontendConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for HttpFrontendConfig
[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 HttpFrontendConfig
[src]

impl Hash for HttpFrontendConfig
[src]

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

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

Auto Trait Implementations