pub enum GroupKind {
Capturing(Capture),
Atomic,
Normal,
Implicit,
}Variants§
Capturing(Capture)
A (possibly named) capturing group e.g. :foo
Atomic
An atomic group
Normal
A normal group with a set of parentheses
Implicit
An implicit group, with no parentheses
Implementations§
Trait Implementations§
impl Eq for GroupKind
impl StructuralPartialEq for GroupKind
Auto Trait Implementations§
impl Freeze for GroupKind
impl RefUnwindSafe for GroupKind
impl Send for GroupKind
impl Sync for GroupKind
impl Unpin for GroupKind
impl UnwindSafe for GroupKind
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