This crate provides a set of functions for loading/saving structs to toml files in OS-accurate locations
```rust use configurable::{Configurable, Config, Data, Error, LoadState}; use serde::{Serialize, Deserialize};
struct MyConfiguration { name: String, attempts: u32, force: bool, }
impl Default for MyConfiguration { fn default() -> Self { Self { name: "Foobar".into(), attempts: 3, force: false, } } }
impl Config for MyConfiguration {}
impl Configurable for MyConfiguration { const ORGANIZATION: &'static str = "museun"; const APPLICATION: &'static str = "foobar"; const NAME: &'static str = "config.toml";
fn ensure_dir() -> Result<std::path::PathBuf, Error> {
<Self as Config>::ensure_dir()
}
} ```
```rust use configurable::{Configurable, Config, Data, Error, LoadState}; use serde::{Serialize, Deserialize};
struct MyData {
#[serde(flatten)]
data: std::collections::HashMap
impl Data for MyData {}
impl Configurable for MyData { const ORGANIZATION: &'static str = "museun"; const APPLICATION: &'static str = "foobar"; const NAME: &'static str = "data.json";
fn ensure_dir() -> Result<std::path::PathBuf, Error> {
<Self as Data>::ensure_dir()
}
} ```
rust
fn load_my_stuff() -> Something {
use configurable::Configuable;
// this tries to load the configuration ot creates a default instance of it
match match Something::load_or_default() {
Ok(data) => data,
Err(err) => {
eprintln!("cannot load configuration: {}", err);
std::process::exit(1)
}
} {
// it was successfully loaded
configurable::LoadState::Loaded(this) => this,
// it was defaulted
configurable::LoadState::Default(this) => {
eprintln!(
"a default configuration was created at: {}",
Something::path().unwrap().display()
);
std::process::exit(1)
}
}
}