pub struct DeploymentStyle {
pub deployment_option: Option<String>,
pub deployment_type: Option<String>,
}
Expand description
Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.
Fields§
§deployment_option: Option<String>
Indicates whether to route deployment traffic behind a load balancer.
deployment_type: Option<String>
Indicates whether to run an in-place deployment or a blue/green deployment.
Trait Implementations§
Source§impl Clone for DeploymentStyle
impl Clone for DeploymentStyle
Source§fn clone(&self) -> DeploymentStyle
fn clone(&self) -> DeploymentStyle
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 DeploymentStyle
impl Debug for DeploymentStyle
Source§impl Default for DeploymentStyle
impl Default for DeploymentStyle
Source§fn default() -> DeploymentStyle
fn default() -> DeploymentStyle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentStyle
impl<'de> Deserialize<'de> for DeploymentStyle
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
Source§impl PartialEq for DeploymentStyle
impl PartialEq for DeploymentStyle
Source§impl Serialize for DeploymentStyle
impl Serialize for DeploymentStyle
impl StructuralPartialEq for DeploymentStyle
Auto Trait Implementations§
impl Freeze for DeploymentStyle
impl RefUnwindSafe for DeploymentStyle
impl Send for DeploymentStyle
impl Sync for DeploymentStyle
impl Unpin for DeploymentStyle
impl UnwindSafe for DeploymentStyle
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