pub struct OptionalCallExpression {
pub base: BaseNode,
pub callee: Box<Expression>,
pub arguments: Vec<Expression>,
pub optional: bool,
pub type_parameters: Option<RawNode>,
pub type_arguments: Option<RawNode>,
}Fields§
§base: BaseNode§callee: Box<Expression>§arguments: Vec<Expression>§optional: bool§type_parameters: Option<RawNode>§type_arguments: Option<RawNode>Trait 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 moreSource§impl Debug for OptionalCallExpression
impl Debug for OptionalCallExpression
Auto 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