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