Initial macro support for deserializing structs and tuple structs

This commit is contained in:
Erick Tryzelaar
2015-02-10 21:08:04 -08:00
parent 044825829a
commit 3fd42e616c
3 changed files with 316 additions and 64 deletions
+2
View File
@@ -10,6 +10,8 @@ pub trait Error {
fn syntax_error() -> Self;
fn end_of_stream_error() -> Self;
fn missing_field_error(&'static str) -> Self;
}
pub trait Deserialize {