Struct ironcalc_base::expressions::lexer::util::MarkedToken
source · pub struct MarkedToken {
pub token: TokenType,
pub start: i32,
pub end: i32,
}Expand description
A MarkedToken is a token together with its position on a formula
Fields§
§token: TokenType§start: i32§end: i32Trait Implementations§
source§impl Debug for MarkedToken
impl Debug for MarkedToken
source§impl Display for MarkedToken
impl Display for MarkedToken
source§impl PartialEq for MarkedToken
impl PartialEq for MarkedToken
source§fn eq(&self, other: &MarkedToken) -> bool
fn eq(&self, other: &MarkedToken) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MarkedToken
Auto Trait Implementations§
impl RefUnwindSafe for MarkedToken
impl Send for MarkedToken
impl Sync for MarkedToken
impl Unpin for MarkedToken
impl UnwindSafe for MarkedToken
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