Struct sozu_command_lib::messages::HttpListener[][src]

pub struct HttpListener {
    pub front: SocketAddr,
    pub public_address: Option<IpAddr>,
    pub answer_404: String,
    pub answer_503: String,
    pub expect_proxy: bool,
    pub sticky_name: String,
}

Fields

Trait Implementations

impl Debug for HttpListener
[src]

Formats the value using the given formatter. Read more

impl Clone for HttpListener
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Hash for HttpListener
[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 HttpListener
[src]

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

Auto Trait Implementations