[][src]Struct sharp_pencil::config::Config

pub struct Config { /* fields omitted */ }

The pencil Config type, We provide ways to fill it from JSON files:

let mut app = sharp_pencil::Pencil::new("/demo");
app.config.from_jsonfile("yourconfig.json")

You can also load configurations from an environment variable pointing to a file:

let mut app = sharp_pencil::Pencil::new("/demo");
app.config.from_envvar("YOURAPPLICATION_SETTINGS")

In this case, you have to set this environment variable to the file you want to use. On Linux and OS X you can use the export statement:

export YOURAPPLICATION_SETTINGS="/path/to/config/file"

Implementations

impl Config[src]

pub fn new() -> Config[src]

Create a Config object.

pub fn set(&mut self, key: &str, value: Value)[src]

Set a value for the key.

pub fn get(&self, key: &str) -> Option<&Value>[src]

Returns a reference to the value corresponding to the key.

pub fn get_boolean(&self, key: &str, default: bool) -> bool[src]

Get a boolean configuration value. If the key doesn't exist or the value is not a Json::Boolean, the default value will be returned.

pub fn from_envvar(&mut self, variable_name: &str)[src]

Loads a configuration from an environment variable pointing to a JSON configuration file.

pub fn from_jsonfile(&mut self, filepath: &str)[src]

Updates the values in the config from a JSON file.

pub fn from_object(&mut self, object: Map<String, Value>)[src]

Updates the values from the given Object.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<T> UnsafeAny for T where
    T: Any