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