pub struct EventsMessage {
pub events: Option<Vec<Event>>,
pub marker: Option<String>,
}
Expand description
Represents the output of a DescribeEvents
operation.
Fields§
§events: Option<Vec<Event>>
A list of events. Each element in the list contains detailed information about one event.
marker: Option<String>
Provides an identifier to allow retrieval of paginated results.
Trait Implementations§
Source§impl Clone for EventsMessage
impl Clone for EventsMessage
Source§fn clone(&self) -> EventsMessage
fn clone(&self) -> EventsMessage
Returns a copy 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 EventsMessage
impl Debug for EventsMessage
Source§impl Default for EventsMessage
impl Default for EventsMessage
Source§fn default() -> EventsMessage
fn default() -> EventsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for EventsMessage
impl PartialEq for EventsMessage
impl StructuralPartialEq for EventsMessage
Auto Trait Implementations§
impl Freeze for EventsMessage
impl RefUnwindSafe for EventsMessage
impl Send for EventsMessage
impl Sync for EventsMessage
impl Unpin for EventsMessage
impl UnwindSafe for EventsMessage
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