pub struct DeploymentAllocHealthRequest {
pub deployment_id: Option<String>,
pub healthy_allocation_ids: Option<Vec<String>>,
pub namespace: Option<String>,
pub region: Option<String>,
pub secret_id: Option<String>,
pub unhealthy_allocation_ids: Option<Vec<String>>,
}
Fields§
§deployment_id: Option<String>
§healthy_allocation_ids: Option<Vec<String>>
§namespace: Option<String>
§region: Option<String>
§secret_id: Option<String>
§unhealthy_allocation_ids: Option<Vec<String>>
Trait Implementations§
Source§impl Clone for DeploymentAllocHealthRequest
impl Clone for DeploymentAllocHealthRequest
Source§fn clone(&self) -> DeploymentAllocHealthRequest
fn clone(&self) -> DeploymentAllocHealthRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeploymentAllocHealthRequest
impl Debug for DeploymentAllocHealthRequest
Source§impl Default for DeploymentAllocHealthRequest
impl Default for DeploymentAllocHealthRequest
Source§fn default() -> DeploymentAllocHealthRequest
fn default() -> DeploymentAllocHealthRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentAllocHealthRequest
impl<'de> Deserialize<'de> for DeploymentAllocHealthRequest
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 DeploymentAllocHealthRequest
impl PartialEq for DeploymentAllocHealthRequest
Source§fn eq(&self, other: &DeploymentAllocHealthRequest) -> bool
fn eq(&self, other: &DeploymentAllocHealthRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeploymentAllocHealthRequest
Auto Trait Implementations§
impl Freeze for DeploymentAllocHealthRequest
impl RefUnwindSafe for DeploymentAllocHealthRequest
impl Send for DeploymentAllocHealthRequest
impl Sync for DeploymentAllocHealthRequest
impl Unpin for DeploymentAllocHealthRequest
impl UnwindSafe for DeploymentAllocHealthRequest
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