Available on crate feature
env only.Expand description
Process environment management.
Functions§
- nstd_
env_ args - Returns an
NSTDVecofNSTDStrings that each represent an argument received at program start. - nstd_
env_ current_ dir - Returns a complete path to the process’s current working directory.
- nstd_
env_ current_ exe - Returns a complete path to the process executable.
- nstd_
env_ ⚠remove_ var - Removes an environment variable from the current process.
- nstd_
env_ ⚠set_ current_ dir - Sets the current working directory for the process.
- nstd_
env_ ⚠set_ var - Sets an environment variable for the current process.
- nstd_
env_ temp_ dir - Returns a complete path to a temporary directory.
- nstd_
env_ ⚠var - Retrieves a variable from the process environment.
- nstd_
env_ vars - Returns an
NSTDVecofNSTDString[2]which each represent an environment variable from the current process.