pub enum RuntimeConfigSource {
Default,
ConfigFile,
Cli,
Env,
ScriptCase,
MemoryProfile,
}Expand description
Source of an effective config value.
Variants§
Trait Implementations§
Source§impl Clone for RuntimeConfigSource
impl Clone for RuntimeConfigSource
Source§fn clone(&self) -> RuntimeConfigSource
fn clone(&self) -> RuntimeConfigSource
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 moreimpl Copy for RuntimeConfigSource
Source§impl Debug for RuntimeConfigSource
impl Debug for RuntimeConfigSource
Source§impl<'de> Deserialize<'de> for RuntimeConfigSource
impl<'de> Deserialize<'de> for RuntimeConfigSource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RuntimeConfigSource
Source§impl PartialEq for RuntimeConfigSource
impl PartialEq for RuntimeConfigSource
Source§fn eq(&self, other: &RuntimeConfigSource) -> bool
fn eq(&self, other: &RuntimeConfigSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeConfigSource
impl Serialize for RuntimeConfigSource
impl StructuralPartialEq for RuntimeConfigSource
Auto Trait Implementations§
impl Freeze for RuntimeConfigSource
impl RefUnwindSafe for RuntimeConfigSource
impl Send for RuntimeConfigSource
impl Sync for RuntimeConfigSource
impl Unpin for RuntimeConfigSource
impl UnsafeUnpin for RuntimeConfigSource
impl UnwindSafe for RuntimeConfigSource
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