Simple

Struct Simple 

Source
pub struct Simple { /* private fields */ }

Implementations§

Source§

impl Simple

Source

pub fn from_str(s: &str) -> Result<Self, Error>

Create a new configuration from the given string. This is an extremely simple configuration format. It expects key/value pairs separated by an equal sign. Whitespace is trimmed from the line as well as each key/value. Lines that begin with # are considered a comment and empty lines are ignored. Thre is no hierarchy or anything. If you want to provide some yourself, you can use dot-notation. For example:

## i am a comment
mongo.uri = mongodb://localhost/
mongo.db  = test
Source

pub fn from_file(path: &str) -> Result<Self, Error>

Similar to from_str except that the given path is used as the contents for the string to parse.

Trait Implementations§

Source§

impl Config for Simple

Source§

fn get(&self, key: &str) -> Option<String>

Returns the value associated with the given key.
Source§

fn must_get(&self, key: &str) -> String

Similar to get but panics if there is no value.
Source§

fn string(&self, key: &str) -> String

Get the value as a string or panics if one isn’t found.
Source§

fn int(&self, key: &str) -> i64

Get the value as an integer or panics if one isn’t found or cannot be parsed.
Source§

fn float(&self, key: &str) -> f64

Get the value as a float or panics if one isn’t found or cannot be parsed.
Source§

fn bool(&self, key: &str) -> bool

Get the value as a bool or panics if one isn’t found or cannot be parsed. The following case-insensitive values are considered true: t, true, 1, y, yes. All other values are considered false.
Source§

fn duration(&self, key: &str) -> Duration

Get the value as a duration or panics if one isn’t found or can’t be parsed. Thre doesn’t appear to be a parsing function for a duration, so it attempts to convert to an integer and use that as the number of seconds.
Source§

fn datetime(&self, key: &str) -> DateTime<Utc>

Get the value as a duration or panics if one isn’t found or it can’t be parsed. It uses RFC339 to parse it.
Source§

fn list(&self, key: &str) -> Vec<String>

Get a list or panics if one isn’t found. The list should be a comma-delimited list surrouned by brackets (e.g. [1, 2, 3] => vec![“1”, “2”, “3”].
Source§

fn map(&self, key: &str) -> HashMap<String, String>

Get a map or panics if one isn’t found. The list should be a comma-delimited list surrouned by braces with key/value pairs associated with => (e.g. {a=>1, b=>2, c=>3} => ((a,1), (b,2), (c,3))).
Source§

impl Debug for Simple

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Simple

Source§

fn eq(&self, other: &Simple) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Simple

Auto Trait Implementations§

§

impl Freeze for Simple

§

impl RefUnwindSafe for Simple

§

impl Send for Simple

§

impl Sync for Simple

§

impl Unpin for Simple

§

impl UnwindSafe for Simple

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> 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, 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.