[][src]Enum dqcsim::host::configuration::EnvMod

pub enum EnvMod {
    Set {
        key: String,
        value: String,
    },
    Remove {
        key: String,
    },
}

Represents an environment variable modification.

Variants

Set

Sets the environment variable key to value.

Fields of Set

key: Stringvalue: String
Remove

Clears (undefines) the environment variable key.

Fields of Remove

key: String

Methods

impl EnvMod[src]

pub fn set(key: impl Into<String>, value: impl Into<String>) -> EnvMod[src]

Convenience method for building EnvMod::Set.

pub fn remove(key: impl Into<String>) -> EnvMod[src]

Convenience method for building EnvMod::Remove.

Trait Implementations

impl PartialEq<EnvMod> for EnvMod[src]

impl Clone for EnvMod[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for EnvMod[src]

impl Display for EnvMod[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Turns the EnvMod object into a string representation that can be parsed by from_str().

impl FromStr for EnvMod[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Constructs an EnvMod from its string representation, which is one of:

  • <key> - define environment variable key to the empty string.
  • <key>:<value> - set environment variable key to value.
  • ~<key> - remove environment variable key.

impl Serialize for EnvMod[src]

impl<'de> Deserialize<'de> for EnvMod[src]

Auto Trait Implementations

impl Send for EnvMod

impl Unpin for EnvMod

impl Sync for EnvMod

impl UnwindSafe for EnvMod

impl RefUnwindSafe for EnvMod

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,