spinoso_env/env/
mod.rs

1// ENV is a hash-like accessor for environment variables.
2//
3// This module contains implementations of an environ accessor and mutator.
4//
5// [`Memory`] is based on a Rust [`HashMap`] and offers a virtualized `ENV` API
6// that cannot modify the host system.
7//
8// [`System`] is based on [`env::var_os`] and directly accesses and modifies
9// the host system environ via platform-specific APIs.
10//
11// [`Memory`]: memory::Memory
12// [`HashMap`]: std::collections::HashMap
13// [`System`]: system::System
14// [`env::var_os`]: std::env::var_os
15
16pub mod memory;
17#[cfg(feature = "system-env")]
18pub mod system;