Function rustc_hir_analysis::check::compare_method::compare_impl_method
source · [−]pub(crate) fn compare_impl_method<'tcx>(
tcx: TyCtxt<'tcx>,
impl_m: &AssocItem,
trait_m: &AssocItem,
impl_trait_ref: TraitRef<'tcx>,
trait_item_span: Option<Span>
)Expand description
Checks that a method from an impl conforms to the signature of the same method as declared in the trait.
Parameters
impl_m: type of the method we are checkingimpl_m_span: span to use for reporting errorstrait_m: the method in the traitimpl_trait_ref: the TraitRef corresponding to the trait implementation