pub struct FormulaToken { /* private fields */ }Implementations§
Source§impl FormulaToken
impl FormulaToken
pub fn get_value(&self) -> &str
pub fn set_value<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn get_token_type(&self) -> &FormulaTokenTypes
pub fn set_token_type(&mut self, value: FormulaTokenTypes) -> &mut Self
pub fn get_token_sub_type(&self) -> &FormulaTokenSubTypes
pub fn set_token_sub_type(&mut self, value: FormulaTokenSubTypes) -> &mut Self
Trait Implementations§
Source§impl Clone for FormulaToken
impl Clone for FormulaToken
Source§fn clone(&self) -> FormulaToken
fn clone(&self) -> FormulaToken
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FormulaToken
impl Debug for FormulaToken
Auto Trait Implementations§
impl Freeze for FormulaToken
impl RefUnwindSafe for FormulaToken
impl Send for FormulaToken
impl Sync for FormulaToken
impl Unpin for FormulaToken
impl UnwindSafe for FormulaToken
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