Trait conch_runtime::env::UnsetVariableEnvironment [] [src]

pub trait UnsetVariableEnvironment: VariableEnvironment {
    fn unset_var<Q: ?Sized>(&mut self, name: &Q)
    where
        Self::VarName: Borrow<Q>,
        Q: Hash + Eq
; }

An interface for unsetting shell and envrironment variables.

Required Methods

Unset the value of some variable (including environment variables).

Implementations on Foreign Types

impl<'a, T: ?Sized + UnsetVariableEnvironment> UnsetVariableEnvironment for &'a mut T
[src]

[src]

Implementors