pub enum DeploymentEnvironment {
Name(String),
NameURL {
name: String,
url: Option<String>,
},
}
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DeploymentEnvironment
impl<'de> Deserialize<'de> for DeploymentEnvironment
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
Auto Trait Implementations§
impl Freeze for DeploymentEnvironment
impl RefUnwindSafe for DeploymentEnvironment
impl Send for DeploymentEnvironment
impl Sync for DeploymentEnvironment
impl Unpin for DeploymentEnvironment
impl UnwindSafe for DeploymentEnvironment
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