mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 22:17:59 +00:00
Convert into typaram into where clause
This commit is contained in:
+1
-1
@@ -508,7 +508,7 @@ impl<
|
||||
|
||||
struct VecVisitor<T>;
|
||||
|
||||
impl<T: Deserialize> Visitor for VecVisitor<T> {
|
||||
impl<T> Visitor for VecVisitor<T> where T: Deserialize {
|
||||
type Value = Vec<T>;
|
||||
|
||||
fn visit_seq<
|
||||
|
||||
Reference in New Issue
Block a user