pub struct TokenParserItem {
pub chunk: Vec<char>,
pub token_type: TokenType,
}
Fields§
§chunk: Vec<char>
§token_type: TokenType
Auto Trait Implementations§
impl Freeze for TokenParserItem
impl RefUnwindSafe for TokenParserItem
impl Send for TokenParserItem
impl Sync for TokenParserItem
impl Unpin for TokenParserItem
impl UnwindSafe for TokenParserItem
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