pub struct EnvironmentSourceValue {
pub source: EnvironmentSource,
pub name: String,
pub value: String,
}Expand description
One source’s contribution to a variable.
Fields§
§source: EnvironmentSourceWhich layer supplied it.
name: StringThe exact spelling that layer used.
value: StringThe value, masked for inherited host values unless explicitly revealed.
Trait Implementations§
Source§impl Clone for EnvironmentSourceValue
impl Clone for EnvironmentSourceValue
Source§fn clone(&self) -> EnvironmentSourceValue
fn clone(&self) -> EnvironmentSourceValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EnvironmentSourceValue
impl Debug for EnvironmentSourceValue
impl Eq for EnvironmentSourceValue
Source§impl PartialEq for EnvironmentSourceValue
impl PartialEq for EnvironmentSourceValue
impl StructuralPartialEq for EnvironmentSourceValue
Auto Trait Implementations§
impl Freeze for EnvironmentSourceValue
impl RefUnwindSafe for EnvironmentSourceValue
impl Send for EnvironmentSourceValue
impl Sync for EnvironmentSourceValue
impl Unpin for EnvironmentSourceValue
impl UnsafeUnpin for EnvironmentSourceValue
impl UnwindSafe for EnvironmentSourceValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.