pub fn match_path(path: &Path<'_>, segments: &[&str]) -> boolExpand description
THIS METHOD IS DEPRECATED. Matches a Path against a slice of segment string literals.
This method is deprecated and will eventually be removed since it does not match against the
entire path or resolved DefId. Prefer using match_def_path. Consider getting a DefId from
QPath::Resolved.1.res.opt_def_id().
There is also match_qpath if you are dealing with a rustc_hir::QPath instead of a
rustc_hir::Path.
§Examples
ⓘ
if match_path(&trait_ref.path, &paths::HASH) {
// This is the `std::hash::Hash` trait.
}
if match_path(ty_path, &["rustc", "lint", "Lint"]) {
// This is a `rustc_middle::lint::Lint`.
}