Convert json::ser to associated types

This commit is contained in:
Erick Tryzelaar
2015-01-17 22:20:28 -08:00
parent 73018e4d5d
commit f8fb17b2ff
6 changed files with 101 additions and 86 deletions
-1
View File
@@ -111,7 +111,6 @@ pub trait Visitor {
fn visit_none(&mut self) -> Result<Self::Value, Self::Error>;
#[inline]
fn visit_some<V>(&mut self, value: V) -> Result<Self::Value, Self::Error>
where V: Serialize;