pub struct EventsMessage {
pub events: Option<Vec<Event>>,
pub marker: Option<String>,
}
Expand description
Fields§
§events: Option<Vec<Event>>
A list of Event
instances.
marker: Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
Trait Implementations§
Source§impl Clone for EventsMessage
impl Clone for EventsMessage
Source§fn clone(&self) -> EventsMessage
fn clone(&self) -> EventsMessage
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 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