pub struct RemoveTargetsResultEntry {
pub target_id: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
An entry in a RemoveTargets response indicating a failed removal.
Fields§
§target_id: Option<String>The ID of the target that failed to be removed.
error_code: Option<String>The error code for the failure.
error_message: Option<String>The error message for the failure.
Trait Implementations§
Source§impl Clone for RemoveTargetsResultEntry
impl Clone for RemoveTargetsResultEntry
Source§fn clone(&self) -> RemoveTargetsResultEntry
fn clone(&self) -> RemoveTargetsResultEntry
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 RemoveTargetsResultEntry
impl Debug for RemoveTargetsResultEntry
Source§impl Default for RemoveTargetsResultEntry
impl Default for RemoveTargetsResultEntry
Source§fn default() -> RemoveTargetsResultEntry
fn default() -> RemoveTargetsResultEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoveTargetsResultEntry
impl<'de> Deserialize<'de> for RemoveTargetsResultEntry
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 RemoveTargetsResultEntry
impl RefUnwindSafe for RemoveTargetsResultEntry
impl Send for RemoveTargetsResultEntry
impl Sync for RemoveTargetsResultEntry
impl Unpin for RemoveTargetsResultEntry
impl UnsafeUnpin for RemoveTargetsResultEntry
impl UnwindSafe for RemoveTargetsResultEntry
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