pub struct CqrsCursor {
pub event_seq: u64,
pub command_count: u64,
pub error_count: u64,
pub audit_seq: u64,
pub dedupe: Option<CqrsDedupeSnapshot>,
}Expand description
CqrsCursor data container.
Fields§
§event_seq: u64event_seq field for event seq.
command_count: u64command_count field for command count.
error_count: u64error_count field for error count.
audit_seq: u64audit_seq field for audit seq.
dedupe: Option<CqrsDedupeSnapshot>dedupe field for dedupe.
Trait Implementations§
Source§impl Clone for CqrsCursor
impl Clone for CqrsCursor
Source§fn clone(&self) -> CqrsCursor
fn clone(&self) -> CqrsCursor
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 CqrsCursor
impl Debug for CqrsCursor
Source§impl PartialEq for CqrsCursor
impl PartialEq for CqrsCursor
impl Eq for CqrsCursor
impl StructuralPartialEq for CqrsCursor
Auto Trait Implementations§
impl Freeze for CqrsCursor
impl RefUnwindSafe for CqrsCursor
impl Send for CqrsCursor
impl Sync for CqrsCursor
impl Unpin for CqrsCursor
impl UnsafeUnpin for CqrsCursor
impl UnwindSafe for CqrsCursor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.