pub struct FormulaExpression {
pub expression: String,
}
Fields§
§expression: String
Implementations§
Trait Implementations§
Source§impl Clone for FormulaExpression
impl Clone for FormulaExpression
Source§fn clone(&self) -> FormulaExpression
fn clone(&self) -> FormulaExpression
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 moreSource§impl Debug for FormulaExpression
impl Debug for FormulaExpression
Source§impl Default for FormulaExpression
impl Default for FormulaExpression
Source§fn default() -> FormulaExpression
fn default() -> FormulaExpression
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FormulaExpression
impl<'de> Deserialize<'de> for FormulaExpression
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
Auto Trait Implementations§
impl Freeze for FormulaExpression
impl RefUnwindSafe for FormulaExpression
impl Send for FormulaExpression
impl Sync for FormulaExpression
impl Unpin for FormulaExpression
impl UnwindSafe for FormulaExpression
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