You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: the following explicit lifetimes could be elided: 'a
--> src/de.rs:138:11
|
138 | impl<'de, 'a> de::Deserializer<'de> for &'a mut Deserializer<'de> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
138 - impl<'de, 'a> de::Deserializer<'de> for &'a mut Deserializer<'de> {
138 + impl<'de> de::Deserializer<'de> for &mut Deserializer<'de> {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/de.rs:516:11
|
516 | impl<'de, 'a> SeqAccess<'de> for CommaSeparated<'a, 'de> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
516 - impl<'de, 'a> SeqAccess<'de> for CommaSeparated<'a, 'de> {
516 + impl<'de> SeqAccess<'de> for CommaSeparated<'_, 'de> {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/de.rs:539:11
|
539 | impl<'de, 'a> MapAccess<'de> for CommaSeparated<'a, 'de> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
539 - impl<'de, 'a> MapAccess<'de> for CommaSeparated<'a, 'de> {
539 + impl<'de> MapAccess<'de> for CommaSeparated<'_, 'de> {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/de.rs:589:11
|
589 | impl<'de, 'a> EnumAccess<'de> for Enum<'a, 'de> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
589 - impl<'de, 'a> EnumAccess<'de> for Enum<'a, 'de> {
589 + impl<'de> EnumAccess<'de> for Enum<'_, 'de> {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/de.rs:612:11
|
612 | impl<'de, 'a> VariantAccess<'de> for Enum<'a, 'de> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
612 - impl<'de, 'a> VariantAccess<'de> for Enum<'a, 'de> {
612 + impl<'de> VariantAccess<'de> for Enum<'_, 'de> {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:33:6
|
33 | impl<'a> ser::Serializer for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
33 - impl<'a> ser::Serializer for &'a mut Serializer {
33 + impl ser::Serializer for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:311:6
|
311 | impl<'a> ser::SerializeSeq for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
311 - impl<'a> ser::SerializeSeq for &'a mut Serializer {
311 + impl ser::SerializeSeq for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:336:6
|
336 | impl<'a> ser::SerializeTuple for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
336 - impl<'a> ser::SerializeTuple for &'a mut Serializer {
336 + impl ser::SerializeTuple for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:357:6
|
357 | impl<'a> ser::SerializeTupleStruct for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
357 - impl<'a> ser::SerializeTupleStruct for &'a mut Serializer {
357 + impl ser::SerializeTupleStruct for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:386:6
|
386 | impl<'a> ser::SerializeTupleVariant for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
386 - impl<'a> ser::SerializeTupleVariant for &'a mut Serializer {
386 + impl ser::SerializeTupleVariant for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:414:6
|
414 | impl<'a> ser::SerializeMap for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
414 - impl<'a> ser::SerializeMap for &'a mut Serializer {
414 + impl ser::SerializeMap for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:455:6
|
455 | impl<'a> ser::SerializeStruct for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
455 - impl<'a> ser::SerializeStruct for &'a mut Serializer {
455 + impl ser::SerializeStruct for &mut Serializer {
|
warning: the following explicit lifetimes could be elided: 'a
--> src/ser.rs:479:6
|
479 | impl<'a> ser::SerializeStructVariant for &'a mut Serializer {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
479 - impl<'a> ser::SerializeStructVariant for &'a mut Serializer {
479 + impl ser::SerializeStructVariant for &mut Serializer {
|
0 commit comments