pub enum RegexTree {
Top,
Bottom,
Set(Intervals),
Epsilon,
Concat(Rc<RegexTree>, Rc<RegexTree>),
KleeneClosure(Rc<RegexTree>),
Union(Rc<RegexTree>, Rc<RegexTree>),
Intersection(Rc<RegexTree>, Rc<RegexTree>),
Complement(Rc<RegexTree>),
}Variants§
Top
Bottom
Set(Intervals)
Epsilon
Concat(Rc<RegexTree>, Rc<RegexTree>)
KleeneClosure(Rc<RegexTree>)
Union(Rc<RegexTree>, Rc<RegexTree>)
Intersection(Rc<RegexTree>, Rc<RegexTree>)
Complement(Rc<RegexTree>)
Implementations§
Trait Implementations§
Source§impl Ord for RegexTree
impl Ord for RegexTree
Source§impl PartialOrd for RegexTree
impl PartialOrd for RegexTree
impl Eq for RegexTree
impl StructuralPartialEq for RegexTree
Auto Trait Implementations§
impl Freeze for RegexTree
impl RefUnwindSafe for RegexTree
impl !Send for RegexTree
impl !Sync for RegexTree
impl Unpin for RegexTree
impl UnwindSafe for RegexTree
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