pub struct ExpressionFunction {
pub name: String,
pub params: Vec<String>,
pub expression: AstExpression,
pub scope: ExpressionFunctionScope,
}Fields§
§name: String§params: Vec<String>§expression: AstExpression§scope: ExpressionFunctionScopeTrait Implementations§
Source§impl Clone for ExpressionFunction
impl Clone for ExpressionFunction
Source§fn clone(&self) -> ExpressionFunction
fn clone(&self) -> ExpressionFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExpressionFunction
impl Debug for ExpressionFunction
Source§impl<'de> Deserialize<'de> for ExpressionFunction
impl<'de> Deserialize<'de> for ExpressionFunction
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 ExpressionFunction
impl PartialEq for ExpressionFunction
Source§impl Serialize for ExpressionFunction
impl Serialize for ExpressionFunction
impl StructuralPartialEq for ExpressionFunction
Auto Trait Implementations§
impl Freeze for ExpressionFunction
impl RefUnwindSafe for ExpressionFunction
impl Send for ExpressionFunction
impl Sync for ExpressionFunction
impl Unpin for ExpressionFunction
impl UnsafeUnpin for ExpressionFunction
impl UnwindSafe for ExpressionFunction
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