pub struct ResolvedEnvironment {
pub environment: BTreeMap<String, String>,
pub report: EnvironmentReport,
}Expand description
The resolved environment, and the diagnostic describing how it was reached.
Fields§
§environment: BTreeMap<String, String>What the child process receives.
report: EnvironmentReportWhat a caller is told about it.
Auto Trait Implementations§
impl Freeze for ResolvedEnvironment
impl RefUnwindSafe for ResolvedEnvironment
impl Send for ResolvedEnvironment
impl Sync for ResolvedEnvironment
impl Unpin for ResolvedEnvironment
impl UnsafeUnpin for ResolvedEnvironment
impl UnwindSafe for ResolvedEnvironment
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