Struct brzozowski_regex::Pure
source · pub struct Pure<S> { /* private fields */ }
Expand description
A pure regular expression builder that keeps the structure of the constructor calls in the result
Trait Implementations§
source§impl<S> Builder for Pure<S>
impl<S> Builder for Pure<S>
type Symbol = S
fn empty_set() -> Regex<Self>
fn empty_string() -> Regex<Self>
fn symbol(value: S) -> Regex<Self>
fn closure(inner: Regex<Self>) -> Regex<Self>
fn concat(left: Regex<Self>, right: Regex<Self>) -> Regex<Self>
fn or(left: Regex<Self>, right: Regex<Self>) -> Regex<Self>
fn and(left: Regex<Self>, right: Regex<Self>) -> Regex<Self>
fn complement(inner: Regex<Self>) -> Regex<Self>
source§impl<S: PartialEq> PartialEq for Pure<S>
impl<S: PartialEq> PartialEq for Pure<S>
impl<S: Eq> Eq for Pure<S>
impl<S> StructuralEq for Pure<S>
impl<S> StructuralPartialEq for Pure<S>
Auto Trait Implementations§
impl<S> RefUnwindSafe for Pure<S>where
S: RefUnwindSafe,
impl<S> Send for Pure<S>where
S: Send,
impl<S> Sync for Pure<S>where
S: Sync,
impl<S> Unpin for Pure<S>where
S: Unpin,
impl<S> UnwindSafe for Pure<S>where
S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more