pub struct Expression {
pub expression_function: ExpressionFunction,
pub expression_arguments: Vec<VariableData>,
}
Expand description
Expression : Defines the Expression object, which contains a list of VariableData
objects strung together by operators (ExpressionFunction
).
Fields§
§expression_function: ExpressionFunction
§expression_arguments: Vec<VariableData>
Implementations§
Source§impl Expression
impl Expression
Sourcepub fn new(
expression_function: ExpressionFunction,
expression_arguments: Vec<VariableData>,
) -> Expression
pub fn new( expression_function: ExpressionFunction, expression_arguments: Vec<VariableData>, ) -> Expression
Defines the Expression object, which contains a list of VariableData
objects strung together by operators (ExpressionFunction
).
Trait Implementations§
Source§impl Clone for Expression
impl Clone for Expression
Source§fn clone(&self) -> Expression
fn clone(&self) -> Expression
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 Expression
impl Debug for Expression
Source§impl Default for Expression
impl Default for Expression
Source§fn default() -> Expression
fn default() -> Expression
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Expression
impl<'de> Deserialize<'de> for Expression
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 PartialEq for Expression
impl PartialEq for Expression
Source§impl Serialize for Expression
impl Serialize for Expression
impl StructuralPartialEq for Expression
Auto Trait Implementations§
impl Freeze for Expression
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
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