[][src]Struct weather_util_rust::config::Config

pub struct Config(_);

Configuration struct

Methods

impl Config[src]

pub fn new() -> Self[src]

pub fn init_config() -> Result<Self, Error>[src]

Pull in configuration data using [dotenv](https://crates.io/dotenv).

If a .env file exists in the current directory, pull in any ENV variables in it.

Next, if a config file exists in the current directory named config.env, or if a config file exists at ${HOME}/.config/weather_util/config.env, set ENV variables using it.

Config files should have lines of the following form: API_KEY=api_key_value

Example

use weather_util_rust::config::Config;
use anyhow::Error;

let config = Config::init_config()?;
assert_eq!(config.api_key, var("API_KEY").ok());
assert_eq!(config.api_endpoint, var("API_ENDPOINT").ok());

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

impl Deref for Config[src]

type Target = ConfigInner

The resulting type after dereferencing.

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,