Struct quil_rs::expression::FunctionCallExpression
source · pub struct FunctionCallExpression {
pub function: ExpressionFunction,
pub expression: Box<Expression>,
}
Fields§
§function: ExpressionFunction
§expression: Box<Expression>
Implementations§
source§impl FunctionCallExpression
impl FunctionCallExpression
pub fn new(function: ExpressionFunction, expression: Box<Expression>) -> Self
Trait Implementations§
source§impl Clone for FunctionCallExpression
impl Clone for FunctionCallExpression
source§fn clone(&self) -> FunctionCallExpression
fn clone(&self) -> FunctionCallExpression
Returns a copy 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 FunctionCallExpression
impl Debug for FunctionCallExpression
source§impl Hash for FunctionCallExpression
impl Hash for FunctionCallExpression
source§impl PartialEq for FunctionCallExpression
impl PartialEq for FunctionCallExpression
source§fn eq(&self, other: &FunctionCallExpression) -> bool
fn eq(&self, other: &FunctionCallExpression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for FunctionCallExpression
impl StructuralEq for FunctionCallExpression
impl StructuralPartialEq for FunctionCallExpression
Auto Trait Implementations§
impl RefUnwindSafe for FunctionCallExpression
impl Send for FunctionCallExpression
impl Sync for FunctionCallExpression
impl Unpin for FunctionCallExpression
impl UnwindSafe for FunctionCallExpression
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.