pub struct UnixEnvVars<'tcx> {
map: FxHashMap<OsString, Pointer>,
environ: MPlaceTy<'tcx>,
}
Fields§
§map: FxHashMap<OsString, Pointer>
Stores pointers to the environment variables. These variables must be stored as
null-terminated target strings (c_str or wide_str) with the "{name}={value}"
format.
environ: MPlaceTy<'tcx>
Place where the environ
static is stored. Lazily initialized, but then never changes.
Implementations§
source§impl<'tcx> UnixEnvVars<'tcx>
impl<'tcx> UnixEnvVars<'tcx>
pub(crate) fn new( ecx: &mut InterpCx<'tcx, MiriMachine<'tcx>>, env_vars: FxHashMap<OsString, OsString>, ) -> InterpResult<'tcx, Self>
pub(crate) fn cleanup( ecx: &mut InterpCx<'tcx, MiriMachine<'tcx>>, ) -> InterpResult<'tcx>
pub(crate) fn environ(&self) -> Pointer
fn get_ptr( &self, ecx: &InterpCx<'tcx, MiriMachine<'tcx>>, name: &OsStr, ) -> InterpResult<'tcx, Option<Pointer>>
sourcepub(crate) fn get(
&self,
ecx: &InterpCx<'tcx, MiriMachine<'tcx>>,
name: &OsStr,
) -> InterpResult<'tcx, Option<OsString>>
pub(crate) fn get( &self, ecx: &InterpCx<'tcx, MiriMachine<'tcx>>, name: &OsStr, ) -> InterpResult<'tcx, Option<OsString>>
Implementation detail for InterpCx::get_env_var
. This basically does getenv
, complete
with the reads of the environment, but returns an OsString
instead of a pointer.
Trait Implementations§
source§impl VisitProvenance for UnixEnvVars<'_>
impl VisitProvenance for UnixEnvVars<'_>
fn visit_provenance(&self, visit: &mut VisitWith<'_>)
Auto Trait Implementations§
impl<'tcx> Freeze for UnixEnvVars<'tcx>
impl<'tcx> !RefUnwindSafe for UnixEnvVars<'tcx>
impl<'tcx> Send for UnixEnvVars<'tcx>
impl<'tcx> Sync for UnixEnvVars<'tcx>
impl<'tcx> Unpin for UnixEnvVars<'tcx>
impl<'tcx> !UnwindSafe for UnixEnvVars<'tcx>
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 120 bytes