We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04762dd commit 223f1c7Copy full SHA for 223f1c7
src/libserialize/serialize.rs
@@ -911,5 +911,5 @@ impl<T: UseSpecializedDecodable> Decodable for T {
911
impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {}
912
impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {}
913
impl<T: Decodable> UseSpecializedDecodable for Box<T> {}
914
-impl<'a, T: ?Sized + Decodable> UseSpecializedDecodable for &'a T {}
915
-impl<'a, T: ?Sized + Decodable> UseSpecializedDecodable for &'a [T] {}
+impl<'a, T: Decodable> UseSpecializedDecodable for &'a T {}
+impl<'a, T: Decodable> UseSpecializedDecodable for &'a [T] {}
0 commit comments