mirror of
https://github.com/Drop-OSS/dropbreak.git
synced 2026-07-18 09:57:53 -04:00
55 lines
1.3 KiB
Rust
55 lines
1.3 KiB
Rust
extern crate rustbreak;
|
|
#[macro_use] extern crate serde_derive;
|
|
extern crate failure;
|
|
|
|
use rustbreak::{FileDatabase, backend::FileBackend};
|
|
use rustbreak::deser::{Ron, Yaml};
|
|
|
|
#[derive(Eq, PartialEq, Debug, Serialize, Deserialize, Clone)]
|
|
enum Country {
|
|
Italy, UnitedKingdom
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Debug, Serialize, Deserialize, Clone)]
|
|
struct Person {
|
|
name: String,
|
|
country: Country,
|
|
}
|
|
|
|
fn do_main() -> Result<(), failure::Error> {
|
|
use std::collections::HashMap;
|
|
|
|
let db = FileDatabase::<HashMap<String, Person>, Ron>::from_path("test.ron", HashMap::new())?;
|
|
|
|
println!("Writing to Database");
|
|
db.write(|db| {
|
|
db.insert("john".into(), Person {
|
|
name: String::from("John Andersson"),
|
|
country: Country::Italy
|
|
});
|
|
db.insert("fred".into(), Person {
|
|
name: String::from("Fred Johnson"),
|
|
country: Country::UnitedKingdom
|
|
});
|
|
println!("Entries: \n{:#?}", db);
|
|
})?;
|
|
|
|
println!("Syncing Database");
|
|
db.save()?;
|
|
|
|
// Now lets switch it
|
|
|
|
let db = db.with_deser(Yaml).with_backend(FileBackend::open("test.yml")?);
|
|
db.save()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn main() {
|
|
if let Err(e) = do_main() {
|
|
eprintln!("An error has occurred at: \n{}", e.backtrace());
|
|
::std::process::exit(1);
|
|
}
|
|
}
|
|
|