Enum nginx_config::ast::LocationPattern[][src]

pub enum LocationPattern {
    Prefix(String),
    Exact(String),
    FinalPrefix(String),
    Regex(String),
    RegexInsensitive(String),
    Named(String),
}

Variants

Trait Implementations

impl Debug for LocationPattern
[src]

Formats the value using the given formatter. Read more

impl Clone for LocationPattern
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Display for LocationPattern
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations