rustdoc: Document is_assoc_ty()

It's adapted from the old documentation for the `is_generic` field.
This commit is contained in:
Noah Lev 2021-09-25 09:50:12 -07:00
parent 1085dc2148
commit dace2ee674

View File

@ -1498,6 +1498,7 @@ impl Type {
}
}
/// Checks if this is a `T::Name` path for an associated type.
crate fn is_assoc_ty(&self) -> bool {
match self {
ResolvedPath { path, .. } => path.is_assoc_ty(),
@ -1990,6 +1991,7 @@ impl Path {
+ &self.segments.iter().map(|s| s.name.to_string()).collect::<Vec<_>>().join("::")
}
/// Checks if this is a `T::Name` path for an associated type.
crate fn is_assoc_ty(&self) -> bool {
match self.res {
Res::SelfTy(..) if self.segments.len() != 1 => true,