Struct spinoso_env::System

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

A hash-like accessor for environment variables using platform APIs.

System is an accessor to the host system’s environment variables using the functions provided by the Rust Standard Library in the std::env module.

Use of this ENV backend allows Ruby code to access and modify the host system. It is not appropriate to use this backend in embedded or untrusted contexts.

§Examples

Fetching an environment variable:

const ENV: System = System::new();
assert!(ENV.get(b"PATH")?.is_some());

Setting an environment variable:

const ENV: System = System::new();
ENV.put(b"ENV_BACKEND", Some(b"spinoso_env::System"))?;
assert_eq!(
    std::env::var("ENV_BACKEND").as_deref(),
    Ok("spinoso_env::System")
);

Implementations§

source§

impl System

source

pub const fn new() -> Self

Constructs a new, default ENV System backend.

The resulting environment variable accessor has access to the host system via platform APIs.

§Examples
const ENV: System = System::new();
source

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

Retrieves the value for environment variable name.

Returns None if the named variable does not exist. If the retrieved environment variable value cannot be converted from a platform string to a byte vector, None is returned.

§Implementation notes

This method accesses the host system’s environment using env::var_os.

§Examples
const ENV: System = System::new();
assert!(ENV.get(b"PATH")?.is_some());
§Errors

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

If the environment variable name or value cannot be converted from a byte vector to a platform string, an error is returned.

source

pub fn put(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.

§Implementation notes

This method accesses the host system’s environment using env::set_var and env::remove_var.

§Examples
const ENV: System = System::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.

If the environment variable name or value cannot be converted from a byte vector to a platform string, an 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.

§Implementation notes

This method accesses the host system’s environment using env::vars_os.

§Examples
const ENV: System = System::new();
let map = ENV.to_map()?;
assert!(map.contains_key(&b"PATH"[..]));
§Errors

If any environment variable name or value cannot be converted from a platform string to a byte vector, an error is returned.

Trait Implementations§

source§

impl Clone for System

source§

fn clone(&self) -> System

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 System

source§

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

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

impl Default for System

source§

fn default() -> System

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

impl Hash for System

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for System

source§

fn cmp(&self, other: &System) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for System

source§

fn eq(&self, other: &System) -> 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 PartialOrd for System

source§

fn partial_cmp(&self, other: &System) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for System

source§

impl Eq for System

source§

impl StructuralPartialEq for System

Auto Trait Implementations§

§

impl Freeze for System

§

impl RefUnwindSafe for System

§

impl Send for System

§

impl Sync for System

§

impl Unpin for System

§

impl UnwindSafe for System

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.