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