pub struct BackupEntry {
pub backup_idx: usize,
pub timestamp: u64,
pub size_bytes: usize,
pub checksum: u32,
}Expand description
Entry in the backup list for a slot.
Fields§
§backup_idx: usize§timestamp: u64§size_bytes: usize§checksum: u32Trait Implementations§
Source§impl Clone for BackupEntry
impl Clone for BackupEntry
Source§fn clone(&self) -> BackupEntry
fn clone(&self) -> BackupEntry
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 moreAuto Trait Implementations§
impl Freeze for BackupEntry
impl RefUnwindSafe for BackupEntry
impl Send for BackupEntry
impl Sync for BackupEntry
impl Unpin for BackupEntry
impl UnsafeUnpin for BackupEntry
impl UnwindSafe for BackupEntry
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