envload 0.1.1

Automatically fill structs from env variables
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum EnvloadError {
    #[error("environment variable not found")]
    EnvVarNotFound,
    #[error("parse error")]
    ParseError,
    #[error("env variable is invalid unicode data")]
    InvalidUnicodeData,
}