pub trait TryFromEnv<T>: Sized {
    type Error;

    fn try_from_env(value: &str) -> Result<T, Self::Error>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors