pub enum Op {
    Slice {
        from: u16,
        to: u16,
    },
    Separator,
    Skip {
        count: u16,
    },
    Many,
    ManyComponents,
    AnyWithinRanges {
        from: u16,
        to: u16,
    },
    ExceptWithinRanges {
        from: u16,
        to: u16,
    },
    SubPatternGroup {
        len: u16,
    },
    SubPattern {
        len: u16,
    },
}

Variants

Slice

Fields

from: u16
to: u16

Separator

Skip

Fields

count: u16

Many

ManyComponents

AnyWithinRanges

Fields

from: u16
to: u16

ExceptWithinRanges

Fields

from: u16
to: u16

SubPatternGroup

Fields

len: u16

SubPattern

Fields

len: u16

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.