pub struct ReplicationSnapshotChunk {
pub watermarks: ShardWatermarks,
pub chunk_index: u64,
pub is_last: bool,
pub entries: Vec<StoredEntry>,
}Fields§
§watermarks: ShardWatermarks§chunk_index: u64§is_last: bool§entries: Vec<StoredEntry>Trait Implementations§
Source§impl Clone for ReplicationSnapshotChunk
impl Clone for ReplicationSnapshotChunk
Source§fn clone(&self) -> ReplicationSnapshotChunk
fn clone(&self) -> ReplicationSnapshotChunk
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 ReplicationSnapshotChunk
impl Debug for ReplicationSnapshotChunk
Source§impl PartialEq for ReplicationSnapshotChunk
impl PartialEq for ReplicationSnapshotChunk
Source§fn eq(&self, other: &ReplicationSnapshotChunk) -> bool
fn eq(&self, other: &ReplicationSnapshotChunk) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReplicationSnapshotChunk
impl StructuralPartialEq for ReplicationSnapshotChunk
Auto Trait Implementations§
impl Freeze for ReplicationSnapshotChunk
impl RefUnwindSafe for ReplicationSnapshotChunk
impl Send for ReplicationSnapshotChunk
impl Sync for ReplicationSnapshotChunk
impl Unpin for ReplicationSnapshotChunk
impl UnsafeUnpin for ReplicationSnapshotChunk
impl UnwindSafe for ReplicationSnapshotChunk
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