pub struct BatchGetDeploymentGroupsOutput {
pub deployment_groups_info: Option<Vec<DeploymentGroupInfo>>,
pub error_message: Option<String>,
}
Expand description
Represents the output of a BatchGetDeploymentGroups
operation.
Fields§
§deployment_groups_info: Option<Vec<DeploymentGroupInfo>>
Information about the deployment groups.
error_message: Option<String>
Information about errors that might have occurred during the API call.
Trait Implementations§
Source§impl Clone for BatchGetDeploymentGroupsOutput
impl Clone for BatchGetDeploymentGroupsOutput
Source§fn clone(&self) -> BatchGetDeploymentGroupsOutput
fn clone(&self) -> BatchGetDeploymentGroupsOutput
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 Default for BatchGetDeploymentGroupsOutput
impl Default for BatchGetDeploymentGroupsOutput
Source§fn default() -> BatchGetDeploymentGroupsOutput
fn default() -> BatchGetDeploymentGroupsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetDeploymentGroupsOutput
impl<'de> Deserialize<'de> for BatchGetDeploymentGroupsOutput
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 BatchGetDeploymentGroupsOutput
impl PartialEq for BatchGetDeploymentGroupsOutput
Source§fn eq(&self, other: &BatchGetDeploymentGroupsOutput) -> bool
fn eq(&self, other: &BatchGetDeploymentGroupsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetDeploymentGroupsOutput
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentGroupsOutput
impl RefUnwindSafe for BatchGetDeploymentGroupsOutput
impl Send for BatchGetDeploymentGroupsOutput
impl Sync for BatchGetDeploymentGroupsOutput
impl Unpin for BatchGetDeploymentGroupsOutput
impl UnwindSafe for BatchGetDeploymentGroupsOutput
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