Enum nginx_config::ast::Item [] [src]

pub enum Item {
    Daemon(bool),
    MasterProcess(bool),
    WorkerProcesses(WorkerProcesses),
    Http(Http),
    Server(Server),
    Location(Location),
    Listen(Listen),
    ProxyPass(Value),
    ProxySetHeader {
        field: Value,
        value: Value,
    },
    Gzip(bool),
    GzipStatic(GzipStatic),
    GzipProxied(Vec<GzipProxied>),
    AddHeader(AddHeader),
    Root(Value),
    Alias(Value),
}

Variants

Fields of ProxySetHeader

Trait Implementations

impl Debug for Item
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Item
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Item
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Item
[src]

Auto Trait Implementations

impl Send for Item

impl Sync for Item