We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6da31f commit 0155997Copy full SHA for 0155997
src/libserialize/serialize.rs
@@ -921,4 +921,7 @@ impl<T: UseSpecializedDecodable> Decodable for T {
921
impl<'a, T: ?Sized + Encodable> UseSpecializedEncodable for &'a T {}
922
impl<T: ?Sized + Encodable> UseSpecializedEncodable for Box<T> {}
923
impl<T: Decodable> UseSpecializedDecodable for Box<T> {}
924
-
+impl<T: ?Sized + Encodable> UseSpecializedEncodable for Rc<T> {}
925
+impl<T: Decodable> UseSpecializedDecodable for Rc<T> {}
926
+impl<T: ?Sized + Encodable> UseSpecializedEncodable for Arc<T> {}
927
+impl<T: Decodable> UseSpecializedDecodable for Arc<T> {}
0 commit comments