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§impl Debug for EventWindow
impl Debug for EventWindow
impl Eq for EventWindow
Source§impl PartialEq for EventWindow
impl PartialEq for EventWindow
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