pub struct ExportedBatch {
pub entries: Vec<JournalEntry>,
pub next_seq: i64,
pub has_more: bool,
}Expand description
A batch of journal entries ready for replication.
Fields§
§entries: Vec<JournalEntry>§next_seq: i64§has_more: boolTrait Implementations§
Source§impl Clone for ExportedBatch
impl Clone for ExportedBatch
Source§fn clone(&self) -> ExportedBatch
fn clone(&self) -> ExportedBatch
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 moreAuto Trait Implementations§
impl Freeze for ExportedBatch
impl RefUnwindSafe for ExportedBatch
impl Send for ExportedBatch
impl Sync for ExportedBatch
impl Unpin for ExportedBatch
impl UnsafeUnpin for ExportedBatch
impl UnwindSafe for ExportedBatch
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