pub struct EventStreamPage {
pub events: Vec<EventOutboxRecord>,
pub next_commit_seq: Option<u64>,
pub snapshot_seq: u64,
}Fields§
§events: Vec<EventOutboxRecord>§next_commit_seq: Option<u64>§snapshot_seq: u64Trait Implementations§
Source§impl Clone for EventStreamPage
impl Clone for EventStreamPage
Source§fn clone(&self) -> EventStreamPage
fn clone(&self) -> EventStreamPage
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 EventStreamPage
impl Debug for EventStreamPage
Source§impl PartialEq for EventStreamPage
impl PartialEq for EventStreamPage
impl Eq for EventStreamPage
impl StructuralPartialEq for EventStreamPage
Auto Trait Implementations§
impl Freeze for EventStreamPage
impl RefUnwindSafe for EventStreamPage
impl Send for EventStreamPage
impl Sync for EventStreamPage
impl Unpin for EventStreamPage
impl UnsafeUnpin for EventStreamPage
impl UnwindSafe for EventStreamPage
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