pub struct EnvDelta {
pub vars: Vec<(String, String)>,
pub path_entries: Vec<PathBuf>,
}Expand description
Environment changes emitted by vs.
Fields§
§vars: Vec<(String, String)>Environment variables to export.
path_entries: Vec<PathBuf>Additional PATH entries to prepend.
Implementations§
Trait Implementations§
impl Eq for EnvDelta
impl StructuralPartialEq for EnvDelta
Auto Trait Implementations§
impl Freeze for EnvDelta
impl RefUnwindSafe for EnvDelta
impl Send for EnvDelta
impl Sync for EnvDelta
impl Unpin for EnvDelta
impl UnsafeUnpin for EnvDelta
impl UnwindSafe for EnvDelta
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