reso_dd

Crates.ioreso_dd
lib.rsreso_dd
version0.2.0
sourcesrc
created_at2020-01-05 20:54:49.327331
updated_at2020-03-06 13:50:57.285976
descriptionStructures and Enumerations that implement the Real Estate Standards Organization (RESO) Data Dictionary
homepagehttps://github.com/zenlist/reso_dd
repositoryhttps://github.com/zenlist/reso_dd
max_upload_size
id195524
size2,595,401
Jake Thompson (jatsrt)

documentation

https://docs.rs/reso_dd/

README

Structures and Enumerations that implement the Real Estate Standards Organization (RESO) Data Dictionary.

The structures defined here can be serialized and deserialized using serde.

use reso_dd;
use serde_json;

let reso = r#"{
  "StandardStatus": "Active"
}"#;

let property: reso_dd::Property = serde_json::from_str(reso)?;
assert_eq!(property.standard_status, Some(reso_dd::StandardStatus::Active));

println!("{}", serde_json::to_string(&property)?);
Commit count: 6

cargo fmt