pub struct ExportSummary {
pub exported: usize,
pub next_cursor: i64,
}Expand description
Summary returned by export_events.
Fields§
§exported: usizeNumber of events written to the batch.
next_cursor: i64The highest rowid included in this batch (= next cursor).
Trait Implementations§
Source§impl Clone for ExportSummary
impl Clone for ExportSummary
Source§fn clone(&self) -> ExportSummary
fn clone(&self) -> ExportSummary
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 ExportSummary
impl Debug for ExportSummary
Source§impl Default for ExportSummary
impl Default for ExportSummary
Source§fn default() -> ExportSummary
fn default() -> ExportSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportSummary
impl RefUnwindSafe for ExportSummary
impl Send for ExportSummary
impl Sync for ExportSummary
impl Unpin for ExportSummary
impl UnsafeUnpin for ExportSummary
impl UnwindSafe for ExportSummary
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