Enum reproto_parser::ast::Name [] [src]

pub enum Name {
    Relative {
        parts: Vec<String>,
    },
    Absolute {
        prefix: Option<String>,
        parts: Vec<String>,
    },
}

Variants

Fields of Relative

Fields of Absolute

Trait Implementations

impl Debug for Name
[src]

[src]

Formats the value using the given formatter.

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