pub enum Token<'i, R> {
Start {
rule: R,
pos: Position<'i>,
},
End {
rule: R,
pos: Position<'i>,
},
}
Expand description
A token generated by a Parser
.
Variants§
Trait Implementations§
impl<'i, R: Eq> Eq for Token<'i, R>
impl<'i, R> StructuralPartialEq for Token<'i, R>
Auto Trait Implementations§
impl<'i, R> Freeze for Token<'i, R>where
R: Freeze,
impl<'i, R> RefUnwindSafe for Token<'i, R>where
R: RefUnwindSafe,
impl<'i, R> Send for Token<'i, R>where
R: Send,
impl<'i, R> Sync for Token<'i, R>where
R: Sync,
impl<'i, R> Unpin for Token<'i, R>where
R: Unpin,
impl<'i, R> UnwindSafe for Token<'i, R>where
R: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)