1 2 3 4 5 6 7 8
//! Environment variable retrieval (stub implementation). /// Retrieves environment variables from the host process. /// /// Stub implementation that returns no variables. pub(crate) fn get_host_env_vars() -> impl Iterator<Item = (String, String)> { std::iter::empty() }