pub enum Token {
InternalStart,
Alternative,
Any,
BackRef(u32),
Char(u8),
End,
Group(usize),
OneOf {
invert: bool,
list: Vec<Collation>,
},
Root,
Start,
WordEnd,
WordStart,
}
Expand description
A single “compiled” token, such as a .
or a character literal
Variants§
InternalStart
Internal token used to find matches that might be anywhere in the text
Alternative
Any
BackRef(u32)
Char(u8)
End
Group(usize)
OneOf
Root
Start
WordEnd
WordStart
Trait Implementations§
impl Eq for Token
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnwindSafe for Token
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more