pub trait EnvVariable {
    type Type: ?Sized + ToOwned;

    fn get_value(
        session: &Session,
        key: impl AsRef<str>
    ) -> Result<<Self::Type as ToOwned>::Owned>; fn set_value(
        session: &Session,
        key: impl AsRef<str>,
        val: &Self::Type
    ) -> Result<()>; }
Expand description

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors