Enum regex_syntax::ast::GroupKind [] [src]

pub enum GroupKind {
    CaptureIndex(u32),
    CaptureName(CaptureName),
    NonCapturing(Flags),
}

The kind of a group.

Variants

(a)

(?P<name>a)

(?:a) and (?i:a)

Trait Implementations

impl Clone for GroupKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GroupKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for GroupKind
[src]

impl PartialEq for GroupKind
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for GroupKind

impl Sync for GroupKind