Enum regex_syntax::ast::GroupKind [−][src]
pub enum GroupKind {
CaptureIndex(u32),
CaptureName(CaptureName),
NonCapturing(Flags),
}
Expand description
The kind of a group.
Variants
CaptureIndex(u32)
(a)
Tuple Fields of CaptureIndex
0: u32
CaptureName(CaptureName)
(?P<name>a)
Tuple Fields of CaptureName
0: CaptureName
NonCapturing(Flags)
(?: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