Struct spinoso_env::Memory

source ·
pub struct Memory { /* private fields */ }
Expand description

A hash-like accessor for environment variables using a fake in-memory store.

Memory offers the same API as other environment variable backends in this crate, but does not access or mutate the underlying system.

This backend is suitable for running in untrusted environments such as a Wasm binary, testing environments, or in embedded contexts.

§Examples

Fetching an environment variable:

let env = Memory::new();
// `Memory` backends are initially empty.
assert_eq!(env.get(b"PATH"), Ok(None));

Setting an environment variable:

let mut env = Memory::new();
env.put(b"ENV_BACKEND", Some(b"spinoso_env::Memory"))?;
assert_eq!(
    env.get(b"ENV_BACKEND")?.as_deref(),
    Some(&b"spinoso_env::Memory"[..])
);

Implementations§

source§

impl Memory

source

pub fn new() -> Self

Constructs a new, empty ENV Memory backend.

The resulting environment variable accessor has no access to the underlying host operating system. The returned accessor uses a virtual environment.

§Examples
let env = Memory::new();
source

pub fn get<'a>( &'a self, name: &[u8] ) -> Result<Option<Cow<'a, [u8]>>, ArgumentError>

Retrieves the value for environment variable name.

Returns None if the named variable does not exist.

§Examples
let env = Memory::new();
assert_eq!(env.get(b"PATH"), Ok(None));
§Errors

If name contains a NUL byte, e.g. b'\0', an error is returned.

source

pub fn put(&mut self, name: &[u8], value: Option<&[u8]>) -> Result<(), Error>

Sets the environment variable name to value.

If the value given is None the environment variable is deleted.

§Examples
let mut env = Memory::new();

env.put(b"RUBY", Some(b"Artichoke"))?;
assert_eq!(env.get(b"RUBY")?.as_deref(), Some(&b"Artichoke"[..]));

env.put(b"RUBY", None)?;
assert_eq!(env.get(b"RUBY")?, None);
§Errors

If name contains a NUL byte, e.g. b'\0', an argument error is returned.

If name contains an ‘=’ byte, e.g. b'=', an EINVAL error is returned.

If value is Some and contains a NUL byte, e.g. b'\0', an argument error is returned.

source

pub fn to_map(&self) -> Result<HashMap<Vec<u8>, Vec<u8>>, ArgumentError>

Serialize the environ to a HashMap.

Map keys are environment variable names and map values are environment variable values.

§Examples
let env = Memory::new();
let map = env.to_map()?;
assert!(map.is_empty());
§Errors

This function is infallible.

Trait Implementations§

source§

impl Clone for Memory

source§

fn clone(&self) -> Memory

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Memory

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Memory

source§

fn default() -> Memory

Returns the “default value” for a type. Read more
source§

impl PartialEq for Memory

source§

fn eq(&self, other: &Memory) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Memory

source§

impl StructuralPartialEq for Memory

Auto Trait Implementations§

§

impl Freeze for Memory

§

impl RefUnwindSafe for Memory

§

impl Send for Memory

§

impl Sync for Memory

§

impl Unpin for Memory

§

impl UnwindSafe for Memory

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.