pub struct EventWindow {
pub events: Vec<WorkflowEventEnvelope>,
pub oldest_seq: Option<u64>,
pub newest_seq: Option<u64>,
pub total_count: usize,
pub has_older: bool,
pub has_newer: bool,
}Fields§
§events: Vec<WorkflowEventEnvelope>§oldest_seq: Option<u64>§newest_seq: Option<u64>§total_count: usize§has_older: bool§has_newer: boolTrait Implementations§
Source§impl Clone for EventWindow
impl Clone for EventWindow
Source§fn clone(&self) -> EventWindow
fn clone(&self) -> EventWindow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventWindow
impl Debug for EventWindow
impl Eq for EventWindow
Source§impl PartialEq for EventWindow
impl PartialEq for EventWindow
Source§fn eq(&self, other: &EventWindow) -> bool
fn eq(&self, other: &EventWindow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EventWindow
Auto Trait Implementations§
impl Freeze for EventWindow
impl RefUnwindSafe for EventWindow
impl Send for EventWindow
impl Sync for EventWindow
impl Unpin for EventWindow
impl UnsafeUnpin for EventWindow
impl UnwindSafe for EventWindow
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