pub struct ExprMethodCall {
pub attrs: Vec<Attribute>,
pub receiver: Box<Expr>,
pub dot_token: Dot,
pub method: Ident,
pub turbofish: Option<MethodTurbofish>,
pub paren_token: Paren,
pub args: Punctuated<Expr, Comma>,
}Expand description
A method call expression: x.foo::<T>(a, b).
This type is available if Syn is built with the "full" feature.
Fields§
§attrs: Vec<Attribute>§receiver: Box<Expr>§dot_token: Dot§method: Ident§turbofish: Option<MethodTurbofish>§paren_token: Paren§args: Punctuated<Expr, Comma>Trait Implementations§
Source§impl Clone for ExprMethodCall
impl Clone for ExprMethodCall
Source§fn clone(&self) -> ExprMethodCall
fn clone(&self) -> ExprMethodCall
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 ExprMethodCall
impl Debug for ExprMethodCall
impl Eq for ExprMethodCall
Source§impl From<ExprMethodCall> for Expr
impl From<ExprMethodCall> for Expr
Source§fn from(e: ExprMethodCall) -> Expr
fn from(e: ExprMethodCall) -> Expr
Converts to this type from the input type.
Source§impl Hash for ExprMethodCall
impl Hash for ExprMethodCall
Source§impl PartialEq for ExprMethodCall
impl PartialEq for ExprMethodCall
Source§fn eq(&self, other: &ExprMethodCall) -> bool
fn eq(&self, other: &ExprMethodCall) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExprMethodCall
Auto Trait Implementations§
impl !Send for ExprMethodCall
impl !Sync for ExprMethodCall
impl Freeze for ExprMethodCall
impl RefUnwindSafe for ExprMethodCall
impl Unpin for ExprMethodCall
impl UnsafeUnpin for ExprMethodCall
impl UnwindSafe for ExprMethodCall
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§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
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.