pub enum EnvMode {
Inherit,
Clear,
Extend,
}Expand description
Environment variable handling mode.
Variants§
Inherit
Inherit all environment variables from parent.
Clear
Clear environment and only use specified variables.
Extend
Inherit and extend with specified variables.
Trait Implementations§
impl Copy for EnvMode
impl Eq for EnvMode
impl StructuralPartialEq for EnvMode
Auto Trait Implementations§
impl Freeze for EnvMode
impl RefUnwindSafe for EnvMode
impl Send for EnvMode
impl Sync for EnvMode
impl Unpin for EnvMode
impl UnwindSafe for EnvMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more