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

    fn try_into_env(&self) -> Result<T, Self::Error>;
}

Required Associated Types

Required Methods

Implementors