We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f22b30 commit d78e1edCopy full SHA for d78e1ed
src/librustdoc/clean/types.rs
@@ -1310,12 +1310,15 @@ crate trait GetDefId {
1310
/// Use [`Self::def_id_full`] if you want to include primitives.
1311
///
1312
/// [`clean`]: crate::clean
1313
+ /// [`clean::Type`]: crate::clean::Type
1314
// FIXME: get rid of this function and always use `def_id_full`
1315
fn def_id(&self) -> Option<DefId>;
1316
1317
/// Use this method to get the [DefId] of a [clean] AST node, including [PrimitiveType]s.
1318
1319
/// See [`Self::def_id`] for more.
1320
+ ///
1321
+ /// [clean]: crate::clean
1322
fn def_id_full(&self, cache: &Cache) -> Option<DefId>;
1323
}
1324
0 commit comments