Update to rust HEAD

This commit is contained in:
Erick Tryzelaar
2015-03-19 07:33:14 -07:00
parent f0d0dd2982
commit e778c7e25c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ use Animal::{Dog, Frog};
#[derive(Clone, PartialEq, Debug, RustcDecodable)]
#[derive_deserialize]
enum Animal {
pub enum Animal {
Dog,
Frog(String, isize)
}
+2 -2
View File
@@ -16,7 +16,7 @@ use serde::de::{Deserializer, Deserialize};
#[derive(Clone, PartialEq, Debug, RustcDecodable)]
#[derive_deserialize]
struct Inner {
pub struct Inner {
a: (),
b: usize,
c: HashMap<String, Option<char>>,
@@ -26,7 +26,7 @@ struct Inner {
#[derive(Clone, PartialEq, Debug, RustcDecodable)]
#[derive_deserialize]
struct Outer {
pub struct Outer {
inner: Vec<Inner>,
}