pub(crate) struct MethodDef<'a> {
pub name: Symbol,
pub generics: Bounds,
pub explicit_self: bool,
pub nonself_args: Vec<(Ty, Symbol)>,
pub ret_ty: Ty,
pub attributes: AttrVec,
pub fieldless_variants_strategy: FieldlessVariantsStrategy,
pub combine_substructure: RefCell<Box<dyn FnMut(&ExtCtxt<'_>, Span, &Substructure<'_>) -> BlockOrExpr + 'a>>,
}Fields§
§name: Symbolname of the method
generics: BoundsList of generics, e.g., R: rand::Rng
explicit_self: boolIs there is a &self argument? If not, it is a static function.
nonself_args: Vec<(Ty, Symbol)>Arguments other than the self argument.
ret_ty: TyReturns type
attributes: AttrVec§fieldless_variants_strategy: FieldlessVariantsStrategy§combine_substructure: RefCell<Box<dyn FnMut(&ExtCtxt<'_>, Span, &Substructure<'_>) -> BlockOrExpr + 'a>>Implementations§
source§impl<'a> MethodDef<'a>
impl<'a> MethodDef<'a>
fn call_substructure_method( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'_>, type_ident: Ident, nonselflike_args: &[P<Expr>], fields: &SubstructureFields<'_>, ) -> BlockOrExpr
fn get_ret_ty( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'_>, generics: &Generics, type_ident: Ident, ) -> P<Ty>
fn is_static(&self) -> bool
fn extract_arg_details( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'_>, type_ident: Ident, generics: &Generics, ) -> (Option<ExplicitSelf>, ThinVec<P<Expr>>, Vec<P<Expr>>, Vec<(Ident, P<Ty>)>)
fn create_method( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'_>, type_ident: Ident, generics: &Generics, explicit_self: Option<ExplicitSelf>, nonself_arg_tys: Vec<(Ident, P<Ty>)>, body: BlockOrExpr, ) -> P<AssocItem>
sourcefn expand_struct_method_body<'b>(
&self,
cx: &ExtCtxt<'_>,
trait_: &TraitDef<'b>,
struct_def: &'b VariantData,
type_ident: Ident,
selflike_args: &[P<Expr>],
nonselflike_args: &[P<Expr>],
is_packed: bool,
) -> BlockOrExpr
fn expand_struct_method_body<'b>( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'b>, struct_def: &'b VariantData, type_ident: Ident, selflike_args: &[P<Expr>], nonselflike_args: &[P<Expr>], is_packed: bool, ) -> BlockOrExpr
The normal case uses field access.
#[derive(PartialEq)]
struct A { x: u8, y: u8 }
// equivalent to:
impl PartialEq for A {
fn eq(&self, other: &A) -> bool {
self.x == other.x && self.y == other.y
}
}But if the struct is repr(packed), we can’t use something like
&self.x because that might cause an unaligned ref. So for any trait
method that takes a reference, we use a local block to force a copy.
This requires that the field impl Copy.
impl PartialEq for A {
fn eq(&self, other: &A) -> bool {
// Desugars to `{ self.x }.eq(&{ other.y }) && ...`
{ self.x } == { other.y } && { self.y } == { other.y }
}
}
impl Hash for A {
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
::core::hash::Hash::hash(&{ self.x }, state);
::core::hash::Hash::hash(&{ self.y }, state);
}
}fn expand_static_struct_method_body( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'_>, struct_def: &VariantData, type_ident: Ident, nonselflike_args: &[P<Expr>], ) -> BlockOrExpr
sourcefn expand_enum_method_body<'b>(
&self,
cx: &ExtCtxt<'_>,
trait_: &TraitDef<'b>,
enum_def: &'b EnumDef,
type_ident: Ident,
selflike_args: ThinVec<P<Expr>>,
nonselflike_args: &[P<Expr>],
) -> BlockOrExpr
fn expand_enum_method_body<'b>( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'b>, enum_def: &'b EnumDef, type_ident: Ident, selflike_args: ThinVec<P<Expr>>, nonselflike_args: &[P<Expr>], ) -> BlockOrExpr
#[derive(PartialEq)]
enum A {
A1,
A2(i32)
}is equivalent to:
#![feature(core_intrinsics)]
enum A {
A1,
A2(i32)
}
impl ::core::cmp::PartialEq for A {
#[inline]
fn eq(&self, other: &A) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
&& match (self, other) {
(A::A2(__self_0), A::A2(__arg1_0)) => *__self_0 == *__arg1_0,
_ => true,
}
}
}Creates a discriminant check combined with a match for a tuple of all
selflike_args, with an arm for each variant with fields, possibly an
arm for each fieldless variant (if unify_fieldless_variants is not
Unify), and possibly a default arm.
fn expand_static_enum_method_body( &self, cx: &ExtCtxt<'_>, trait_: &TraitDef<'_>, enum_def: &EnumDef, type_ident: Ident, nonselflike_args: &[P<Expr>], ) -> BlockOrExpr
Auto Trait Implementations§
impl<'a> !DynSend for MethodDef<'a>
impl<'a> !DynSync for MethodDef<'a>
impl<'a> !Freeze for MethodDef<'a>
impl<'a> !RefUnwindSafe for MethodDef<'a>
impl<'a> !Send for MethodDef<'a>
impl<'a> !Sync for MethodDef<'a>
impl<'a> Unpin for MethodDef<'a>
impl<'a> !UnwindSafe for MethodDef<'a>
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
source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
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: 144 bytes