Enum parse_regex::parser::RegEx [] [src]

pub enum RegEx {
    Or(Box<RegEx>, Box<RegEx>),
    Sequence(Vec<Box<RegEx>>),
    Repetition(Box<RegEx>),
    Terminal(char),
}

Variants

Trait Implementations

impl Eq for RegEx
[src]

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

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for RegEx

impl Sync for RegEx