Config

Struct Config 

Source
pub struct Config { /* private fields */ }
Expand description

Configuration value storage.

Implementations§

Source§

impl Config

Source

pub fn get<'de, S, T>(&self, path: &[S]) -> Result<Option<T>, Error>
where S: AsRef<str>, T: Deserialize<'de>,

Get the current value of a config option.

This will return Ok(None) if the requested option does not exist, and an error if it does not match the requested type. This will never error if T is toml::Value.

§Example
use configory::Manager;

let manager = Manager::new("configory", ()).unwrap();
manager.set(&["option"], 3);

let existing_value = manager.get::<_, i32>(&["option"]);
let missing_value = manager.get::<_, i32>(&["missing"]);

assert_eq!(existing_value, Ok(Some(3)));
assert_eq!(missing_value, Ok(None));
Source

pub fn set<S, V>(&self, path: &[S], value: V)
where S: AsRef<str>, V: Into<Value>,

Set a runtime override for a config option.

See Self::reset for clearing runtime overrides.

§Example
use configory::Manager;

let manager = Manager::new("configory", ()).unwrap();

manager.set(&["option"], 3);
Source

pub fn reset<S>(&self, path: &[S])
where S: AsRef<str>,

Clear the runtime override for a config option.

See Self::set for setting runtime overrides.

§Example
use configory::Manager;

let manager = Manager::new("configory", ()).unwrap();

assert_eq!(manager.get::<_, i32>(&["option"]), Ok(Some(3)));
manager.reset(&["option"]);
assert_eq!(manager.get::<_, i32>(&["option"]), Ok(None));
Source

pub fn persist(&self) -> Result<(), Error>

Persist the current runtime config to the config file.

§Example
use configory::Manager;


let manager = Manager::new("configory", ()).unwrap();
manager.set(&["option"], 3);
manager.persist().unwrap();

Trait Implementations§

Source§

impl Clone for Config

Source§

fn clone(&self) -> Config

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl Freeze for Config

§

impl RefUnwindSafe for Config

§

impl Send for Config

§

impl Sync for Config

§

impl Unpin for Config

§

impl UnwindSafe for Config

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.