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 a72e96c commit 3a6093eCopy full SHA for 3a6093e
src/librustdoc/clean/mod.rs
@@ -995,15 +995,6 @@ impl<'tcx> Clean<'tcx, FnRetTy> for hir::FnRetTy<'tcx> {
995
}
996
997
998
-impl<'tcx> Clean<'tcx, bool> for hir::IsAuto {
999
- fn clean(&self, _: &mut DocContext<'tcx>) -> bool {
1000
- match *self {
1001
- hir::IsAuto::Yes => true,
1002
- hir::IsAuto::No => false,
1003
- }
1004
1005
-}
1006
-
1007
impl<'tcx> Clean<'tcx, Path> for hir::TraitRef<'tcx> {
1008
fn clean(&self, cx: &mut DocContext<'tcx>) -> Path {
1009
let path = clean_path(self.path, cx);
0 commit comments