pub struct OptionalCallExpression {
pub base: BaseNode,
pub callee: Box<Expression>,
pub arguments: Vec<Expression>,
pub optional: bool,
pub type_parameters: Option<Box<Value>>,
pub type_arguments: Option<Box<Value>>,
}Fields§
§base: BaseNode§callee: Box<Expression>§arguments: Vec<Expression>§optional: bool§type_parameters: Option<Box<Value>>§type_arguments: Option<Box<Value>>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
Source§impl<'de> Deserialize<'de> for OptionalCallExpression
impl<'de> Deserialize<'de> for OptionalCallExpression
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
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