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