pub enum Step<'a> {
Token {
kind: SyntaxKind,
n_input_tokens: u8,
},
FloatSplit {
ends_in_dot: bool,
},
Enter {
kind: SyntaxKind,
},
Exit,
Error {
msg: &'a str,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Step<'a>
impl<'a> RefUnwindSafe for Step<'a>
impl<'a> Send for Step<'a>
impl<'a> Sync for Step<'a>
impl<'a> Unpin for Step<'a>
impl<'a> UnwindSafe for Step<'a>
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