Convert into typaram into where clause

This commit is contained in:
Erick Tryzelaar 2015-01-17 21:32:21 -08:00
parent b58fffbc37
commit d38d06a151

View File

@ -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<