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

pub struct Config(_);

Configuration struct

Implementations

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, Some("api_key_value".into()));
assert_eq!(config.api_endpoint, Some("api.openweathermap.org".into()));

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.

impl PartialEq<Config> for Config[src]

impl StructuralPartialEq for Config[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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