pub struct DefaultEnv<C> { /* private fields */ }Expand description
Default runtime environment provider.
- data directory is located in the home user folder
- provides unaltered command line arguments
Trait Implementations§
Source§impl<C: Clone> Clone for DefaultEnv<C>
impl<C: Clone> Clone for DefaultEnv<C>
Source§fn clone(&self) -> DefaultEnv<C>
fn clone(&self) -> DefaultEnv<C>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<C: Debug> Debug for DefaultEnv<C>
impl<C: Debug> Debug for DefaultEnv<C>
Source§impl<C> Default for DefaultEnv<C>
impl<C> Default for DefaultEnv<C>
Source§impl<C: CommandCli> Env<C> for DefaultEnv<C>
impl<C: CommandCli> Env<C> for DefaultEnv<C>
impl<C: Copy> Copy for DefaultEnv<C>
Auto Trait Implementations§
impl<C> Freeze for DefaultEnv<C>
impl<C> RefUnwindSafe for DefaultEnv<C>where
C: RefUnwindSafe,
impl<C> Send for DefaultEnv<C>where
C: Send,
impl<C> Sync for DefaultEnv<C>where
C: Sync,
impl<C> Unpin for DefaultEnv<C>where
C: Unpin,
impl<C> UnwindSafe for DefaultEnv<C>where
C: UnwindSafe,
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