pub struct ExprCallOptions {
pub expr: Box<Expr>,
pub args: NamedArgList,
}
Expand description
Function call options: foo.bar{ value: 1, gas: 2 }
.
Fields§
§expr: Box<Expr>
§args: NamedArgList
Trait Implementations§
Source§impl Clone for ExprCallOptions
impl Clone for ExprCallOptions
Source§fn clone(&self) -> ExprCallOptions
fn clone(&self) -> ExprCallOptions
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 ExprCallOptions
impl Debug for ExprCallOptions
Source§impl Parse for ExprCallOptions
impl Parse for ExprCallOptions
fn parse(input: ParseStream<'_>) -> Result<Self>
Source§impl Spanned for ExprCallOptions
impl Spanned for ExprCallOptions
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.Auto Trait Implementations§
impl Freeze for ExprCallOptions
impl RefUnwindSafe for ExprCallOptions
impl !Send for ExprCallOptions
impl !Sync for ExprCallOptions
impl Unpin for ExprCallOptions
impl UnwindSafe for ExprCallOptions
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)