pub enum VariableSource {
Environment(String),
Collection,
}Expand description
Source/origin of an environment variable
Variants§
Environment(String)
Variable from a named environment
Collection
Variable from collection-level variables
Trait Implementations§
Source§impl Clone for VariableSource
impl Clone for VariableSource
Source§fn clone(&self) -> VariableSource
fn clone(&self) -> VariableSource
Returns a duplicate of the value. Read more
1.0.0 · 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 VariableSource
impl Debug for VariableSource
Auto Trait Implementations§
impl Freeze for VariableSource
impl RefUnwindSafe for VariableSource
impl Send for VariableSource
impl Sync for VariableSource
impl Unpin for VariableSource
impl UnsafeUnpin for VariableSource
impl UnwindSafe for VariableSource
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