pub enum EnvironmentBase {
All,
Core,
None,
}Expand description
Selects the base environment from which a command is launched.
Variants§
All
Inherit every variable from the launching process.
Core
Inherit the platform’s conservative set of core variables.
None
Start with no inherited variables.
Trait Implementations§
Source§impl Clone for EnvironmentBase
impl Clone for EnvironmentBase
impl Copy for EnvironmentBase
Source§impl Debug for EnvironmentBase
impl Debug for EnvironmentBase
impl Eq for EnvironmentBase
Source§impl PartialEq for EnvironmentBase
impl PartialEq for EnvironmentBase
impl StructuralPartialEq for EnvironmentBase
Auto Trait Implementations§
impl Freeze for EnvironmentBase
impl RefUnwindSafe for EnvironmentBase
impl Send for EnvironmentBase
impl Sync for EnvironmentBase
impl Unpin for EnvironmentBase
impl UnsafeUnpin for EnvironmentBase
impl UnwindSafe for EnvironmentBase
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