Struct nginx_config::ast::Listen[][src]

pub struct Listen {
    pub address: Address,
    pub default_server: bool,
    pub ssl: bool,
    pub ext: Option<HttpExt>,
    pub proxy_protocol: bool,
    pub setfib: Option<i32>,
    pub fastopen: Option<u32>,
    pub backlog: Option<i32>,
    pub rcvbuf: Option<u64>,
    pub sndbuf: Option<u64>,
    pub deferred: bool,
    pub bind: bool,
    pub ipv6only: Option<bool>,
    pub reuseport: bool,
}

Fields

Methods

impl Listen
[src]

Trait Implementations

impl Debug for Listen
[src]

Formats the value using the given formatter. Read more

impl Clone for Listen
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Display for Listen
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Listen

impl Sync for Listen