Struct rustc_ast::ast::MethodCall
source · pub struct MethodCall {
pub seg: PathSegment,
pub receiver: P<Expr>,
pub args: ThinVec<P<Expr>>,
pub span: Span,
}
Expand description
A method call (e.g. x.foo::<Bar, Baz>(a, b, c)
).
Fields§
§seg: PathSegment
The method name and its generic arguments, e.g. foo::<Bar, Baz>
.
receiver: P<Expr>
The receiver, e.g. x
.
args: ThinVec<P<Expr>>
The arguments, e.g. a, b, c
.
span: Span
The span of the function, without the dot and receiver e.g. foo::<Bar, Baz>(a, b, c)
.
Trait Implementations§
source§impl Clone for MethodCall
impl Clone for MethodCall
source§fn clone(&self) -> MethodCall
fn clone(&self) -> MethodCall
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 MethodCall
impl Debug for MethodCall
source§impl<__D: Decoder> Decodable<__D> for MethodCall
impl<__D: Decoder> Decodable<__D> for MethodCall
Auto Trait Implementations§
impl !RefUnwindSafe for MethodCall
impl !Send for MethodCall
impl !Sync for MethodCall
impl Unpin for MethodCall
impl !UnwindSafe for MethodCall
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes