pub struct PutTargetsOutput {
pub failed_entry_count: i32,
pub failed_entries: Vec<PutTargetsResultEntry>,
}Expand description
Output for the PutTargets operation.
Fields§
§failed_entry_count: i32The number of failed entries.
failed_entries: Vec<PutTargetsResultEntry>The failed entries.
Trait Implementations§
Source§impl Clone for PutTargetsOutput
impl Clone for PutTargetsOutput
Source§fn clone(&self) -> PutTargetsOutput
fn clone(&self) -> PutTargetsOutput
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 PutTargetsOutput
impl Debug for PutTargetsOutput
Source§impl Default for PutTargetsOutput
impl Default for PutTargetsOutput
Source§fn default() -> PutTargetsOutput
fn default() -> PutTargetsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutTargetsOutput
impl<'de> Deserialize<'de> for PutTargetsOutput
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 PutTargetsOutput
impl RefUnwindSafe for PutTargetsOutput
impl Send for PutTargetsOutput
impl Sync for PutTargetsOutput
impl Unpin for PutTargetsOutput
impl UnsafeUnpin for PutTargetsOutput
impl UnwindSafe for PutTargetsOutput
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