We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 381bf98 commit ffacef3Copy full SHA for ffacef3
native/html5ever_nif/src/common.rs
@@ -10,13 +10,13 @@ use tendril::StrTendril;
10
pub struct QualNameWrapper<'a>(pub &'a QualName);
11
pub struct StrTendrilWrapper<'a>(pub &'a StrTendril);
12
13
-impl<'b> Encoder for QualNameWrapper<'b> {
+impl Encoder for QualNameWrapper<'_> {
14
fn encode<'a>(&self, env: Env<'a>) -> Term<'a> {
15
let data: &str = &self.0.local;
16
data.encode(env)
17
}
18
19
-impl<'b> Encoder for StrTendrilWrapper<'b> {
+impl Encoder for StrTendrilWrapper<'_> {
20
21
let data: &str = self.0;
22
0 commit comments