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.
impl Clean<String> for InternedString
1 parent c325553 commit 78c3427Copy full SHA for 78c3427
src/librustdoc/clean/mod.rs
@@ -31,7 +31,6 @@ use syntax::attr;
31
use syntax_expand::base::MacroKind;
32
use syntax::source_map::DUMMY_SP;
33
use syntax::symbol::{Symbol, kw, sym};
34
-use syntax::symbol::InternedString;
35
use syntax_pos::{self, Pos, FileName};
36
37
use std::collections::hash_map::Entry;
@@ -3701,13 +3700,6 @@ impl Clean<String> for ast::Name {
3701
3700
}
3702
3703
3704
-impl Clean<String> for InternedString {
3705
- #[inline]
3706
- fn clean(&self, _: &DocContext<'_>) -> String {
3707
- self.to_string()
3708
- }
3709
-}
3710
-
3711
#[derive(Clone, Debug)]
3712
pub struct Typedef {
3713
pub type_: Type,
0 commit comments