[][src]Enum kg_lang::Regex

pub enum Regex {
    Empty,
    Any,
    Set {
        set: CharSet,
    },
    Literal {
        chars: Vec<char>,
        icase: bool,
    },
    Repeat {
        e: Box<Regex>,
        min: u32,
        max: u32,
        greedy: bool,
    },
    Concat {
        es: Vec<Regex>,
    },
    Alternate {
        es: Vec<Regex>,
    },
}

Variants

EmptyAnySet

Fields of Set

set: CharSet
Literal

Fields of Literal

chars: Vec<char>icase: bool
Repeat

Fields of Repeat

e: Box<Regex>min: u32max: u32greedy: bool
Concat

Fields of Concat

es: Vec<Regex>
Alternate

Fields of Alternate

es: Vec<Regex>

Methods

impl Regex[src]

pub fn parse(s: &str) -> Result<Regex, Error>[src]

pub fn simplify(self, nest_limit: usize) -> Result<Regex, Error>[src]

Trait Implementations

impl Clone for Regex[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Regex> for Regex[src]

impl Eq for Regex[src]

impl Display for Regex[src]

impl Debug for Regex[src]

Auto Trait Implementations

impl Sync for Regex

impl Send for Regex

impl Unpin for Regex

impl RefUnwindSafe for Regex

impl UnwindSafe for Regex

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]