pub struct OptionalCallExpression {
pub callee: Box<Expression>,
pub arguments: Vec<Argument>,
pub optional: bool,
}Fields§
§callee: Box<Expression>§arguments: Vec<Argument>§optional: boolTrait Implementations§
Source§impl Clone for OptionalCallExpression
impl Clone for OptionalCallExpression
Source§fn clone(&self) -> OptionalCallExpression
fn clone(&self) -> OptionalCallExpression
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 moreAuto Trait Implementations§
impl Freeze for OptionalCallExpression
impl RefUnwindSafe for OptionalCallExpression
impl Send for OptionalCallExpression
impl Sync for OptionalCallExpression
impl Unpin for OptionalCallExpression
impl UnsafeUnpin for OptionalCallExpression
impl UnwindSafe for OptionalCallExpression
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