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)
CaptureName(CaptureName)(?P<name>a)
NonCapturing(Flags)(?:a) and (?i:a)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for GroupKind
impl UnwindSafe for GroupKind
Blanket Implementations
Mutably borrows from an owned value. Read more