pub enum EnvironmentConfigOrString {
Config(EnvironmentConfig),
Id(String),
}Expand description
Environment configuration — can be a full config object or just an ID string.
Variants§
Config(EnvironmentConfig)
Id(String)
Trait Implementations§
Source§impl Clone for EnvironmentConfigOrString
impl Clone for EnvironmentConfigOrString
Source§fn clone(&self) -> EnvironmentConfigOrString
fn clone(&self) -> EnvironmentConfigOrString
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 EnvironmentConfigOrString
impl Debug for EnvironmentConfigOrString
Source§impl<'de> Deserialize<'de> for EnvironmentConfigOrString
impl<'de> Deserialize<'de> for EnvironmentConfigOrString
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 StructuralPartialEq for EnvironmentConfigOrString
Auto Trait Implementations§
impl Freeze for EnvironmentConfigOrString
impl RefUnwindSafe for EnvironmentConfigOrString
impl Send for EnvironmentConfigOrString
impl Sync for EnvironmentConfigOrString
impl Unpin for EnvironmentConfigOrString
impl UnsafeUnpin for EnvironmentConfigOrString
impl UnwindSafe for EnvironmentConfigOrString
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