pub struct CheckpointV0 {
pub replay_from_offset: u64,
pub catalog_records: Vec<CatalogRecordWire>,
pub record_payloads: Vec<Vec<u8>>,
pub index_entries: Vec<IndexEntry>,
}Fields§
§replay_from_offset: u64§catalog_records: Vec<CatalogRecordWire>§record_payloads: Vec<Vec<u8>>§index_entries: Vec<IndexEntry>Trait Implementations§
Source§impl Clone for CheckpointV0
impl Clone for CheckpointV0
Source§fn clone(&self) -> CheckpointV0
fn clone(&self) -> CheckpointV0
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 CheckpointV0
impl RefUnwindSafe for CheckpointV0
impl Send for CheckpointV0
impl Sync for CheckpointV0
impl Unpin for CheckpointV0
impl UnsafeUnpin for CheckpointV0
impl UnwindSafe for CheckpointV0
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