pub enum ArithmeticItem {
Base(ArithmeticBase),
Expr(Box<Arithmetic>),
}
Variants§
Base(ArithmeticBase)
Expr(Box<Arithmetic>)
Trait Implementations§
Source§impl Clone for ArithmeticItem
impl Clone for ArithmeticItem
Source§fn clone(&self) -> ArithmeticItem
fn clone(&self) -> ArithmeticItem
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 ArithmeticItem
impl Debug for ArithmeticItem
Source§impl<'de> Deserialize<'de> for ArithmeticItem
impl<'de> Deserialize<'de> for ArithmeticItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ArithmeticItem
impl Display for ArithmeticItem
Source§impl Hash for ArithmeticItem
impl Hash for ArithmeticItem
Source§impl PartialEq for ArithmeticItem
impl PartialEq for ArithmeticItem
Source§impl Serialize for ArithmeticItem
impl Serialize for ArithmeticItem
impl Eq for ArithmeticItem
impl StructuralPartialEq for ArithmeticItem
Auto Trait Implementations§
impl Freeze for ArithmeticItem
impl RefUnwindSafe for ArithmeticItem
impl Send for ArithmeticItem
impl Sync for ArithmeticItem
impl Unpin for ArithmeticItem
impl UnwindSafe for ArithmeticItem
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