Enum regex_syntax::ast::GroupKind [−][src]
pub enum GroupKind { CaptureIndex(u32), CaptureName(CaptureName), NonCapturing(Flags), }
Expand description
The kind of a group.
Variants
(a)
Tuple Fields of CaptureIndex
0: u32
(?P<name>a)
Tuple Fields of CaptureName
0: CaptureName
(?:a)
and (?i:a)
Tuple Fields of NonCapturing
0: Flags
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for GroupKind
impl UnwindSafe for GroupKind
Blanket Implementations
Mutably borrows from an owned value. Read more