[][src]Struct regular_expression_bootstrap::Re

pub struct Re { /* fields omitted */ }

Implementations

impl Re[src]

pub fn new(expression: Expression) -> Re[src]

pub fn is_match(&self, text: &str) -> bool[src]

pub fn into_expression(self) -> Expression[src]

pub fn as_expression(&self) -> &Expression[src]

Trait Implementations

impl Clone for Re[src]

impl Debug for Re[src]

impl Eq for Re[src]

impl<'_> From<&'_ Re> for Enfa<u32, u32>[src]

impl<'_> From<&'_ Re> for Nfa<Set<u32>, u32>[src]

impl<'_> From<&'_ Re> for Dfa<Set<u32>, u32>[src]

impl From<Expression> for Re[src]

impl From<Re> for Expression[src]

impl Ord for Re[src]

impl PartialEq<Re> for Re[src]

impl PartialOrd<Re> for Re[src]

impl StructuralEq for Re[src]

impl StructuralPartialEq for Re[src]

Auto Trait Implementations

impl RefUnwindSafe for Re

impl Send for Re

impl Sync for Re

impl Unpin for Re

impl UnwindSafe for Re

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.