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