#[repr(C)]pub enum SmartCalcAstType {
None,
Field(Rc<FieldType>),
Item(Rc<dyn DataItem>),
Month(u32),
Binary {
left: Rc<SmartCalcAstType>,
operator: char,
right: Rc<SmartCalcAstType>,
},
PrefixUnary(char, Rc<SmartCalcAstType>),
Assignment {
variable: Rc<VariableInfo>,
expression: Rc<SmartCalcAstType>,
},
Symbol(String),
Variable(Rc<VariableInfo>),
}
Variants§
None
Field(Rc<FieldType>)
Item(Rc<dyn DataItem>)
Month(u32)
Binary
PrefixUnary(char, Rc<SmartCalcAstType>)
Assignment
Symbol(String)
Variable(Rc<VariableInfo>)
Implementations§
Trait Implementations§
Source§impl Clone for SmartCalcAstType
impl Clone for SmartCalcAstType
Source§fn clone(&self) -> SmartCalcAstType
fn clone(&self) -> SmartCalcAstType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SmartCalcAstType
impl !RefUnwindSafe for SmartCalcAstType
impl !Send for SmartCalcAstType
impl !Sync for SmartCalcAstType
impl Unpin for SmartCalcAstType
impl !UnwindSafe for SmartCalcAstType
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