Expand description
This module is concerned with finding methods that a given type provides. For details about how this works in rustc, see the method lookup page in the rustc guide and the corresponding code mostly in rustc_hir_analysis/check/method/probe.rs.
Structs§
- Inherent
Impls - Inherent impls defined in some crate.
- Receiver
Adjustments - Trait
Impls - Trait impls defined or available in some crate.
Enums§
- Lookup
Mode - Whether we’re looking up a dotted method call (like
v.len()
) or a path (likeVec::new
). - TyFingerprint
- This is used as a key for indexing impls.
- Visible
From Module
Traits§
Functions§
- check_
orphan_ rules - Checks whether the impl satisfies the orphan rules.
- def_
crates - implements_
trait - implements_
trait_ unique - is_
dyn_ method - Checks if the self parameter of
Trait
method is thedyn Trait
and we should call the method using the vtable. - iterate_
method_ candidates_ dyn - iterate_
path_ candidates - lookup_
impl_ const