use ron;
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, PartialEq)]
struct A {
한글: String,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
struct B {
eng: String,
}
fn main() {
let a = A {
한글: "스트링".to_string(),
};
let b = B {
eng: "string".to_string(),
};
let a_ser = ron::ser::to_string(&a).unwrap();
let b_ser = ron::ser::to_string(&b).unwrap();
let a_de = ron::de::from_str::<A>(&a_ser);
let b_de = ron::de::from_str::<B>(&b_ser);
println!("a_ser:\n{:#?}", a_ser );
println!("a_de:\n{:#?}", a_de );
println!("b_ser:\n{:#?}", b_ser );
println!("b_de:\n{:#?}", b_de );
}
a_ser:
"(한글:\"스트링\")"
a_de:
Err(
Error {
code: ExpectedIdentifier,
position: Position {
line: 1,
col: 2,
},
},
)
b_ser:
"(eng:\"string\")"
b_de:
Ok(
B {
eng: "string",
},
)
Is this a bug of ron?
Is this a bug of ron?