pub struct PutEventsResultEntry {
pub event_id: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
An entry in a PutEvents response.
Fields§
§event_id: Option<String>The ID of the event that was successfully submitted.
error_code: Option<String>The error code if the event was not submitted.
error_message: Option<String>The error message if the event was not submitted.
Trait Implementations§
Source§impl Clone for PutEventsResultEntry
impl Clone for PutEventsResultEntry
Source§fn clone(&self) -> PutEventsResultEntry
fn clone(&self) -> PutEventsResultEntry
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 PutEventsResultEntry
impl Debug for PutEventsResultEntry
Source§impl Default for PutEventsResultEntry
impl Default for PutEventsResultEntry
Source§fn default() -> PutEventsResultEntry
fn default() -> PutEventsResultEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutEventsResultEntry
impl<'de> Deserialize<'de> for PutEventsResultEntry
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 PutEventsResultEntry
impl RefUnwindSafe for PutEventsResultEntry
impl Send for PutEventsResultEntry
impl Sync for PutEventsResultEntry
impl Unpin for PutEventsResultEntry
impl UnsafeUnpin for PutEventsResultEntry
impl UnwindSafe for PutEventsResultEntry
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