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