Enum rustc_expand::mbe::KleeneOp [−][src]
enum KleeneOp {
ZeroOrMore,
OneOrMore,
ZeroOrOne,
}
Expand description
A Kleene-style repetition operator for token sequences.
Variants
Kleene star (*
) for zero or more repetitions
Kleene plus (+
) for one or more repetitions
Kleene optional (?
) for zero or one repetitions
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for KleeneOp
impl UnwindSafe for KleeneOp
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
ZeroOrMore
: 0 bytesOneOrMore
: 0 bytesZeroOrOne
: 0 bytes