pub struct SqliteBackupReport {
pub schema_version: u32,
pub bytes: u64,
}Expand description
Evidence returned after an integrity-checked online backup.
Fields§
§schema_version: u32Internal schema version copied to the backup.
bytes: u64Final backup file size in bytes.
Trait Implementations§
Source§impl Clone for SqliteBackupReport
impl Clone for SqliteBackupReport
Source§fn clone(&self) -> SqliteBackupReport
fn clone(&self) -> SqliteBackupReport
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 moreimpl Copy for SqliteBackupReport
Source§impl Debug for SqliteBackupReport
impl Debug for SqliteBackupReport
impl Eq for SqliteBackupReport
Source§impl PartialEq for SqliteBackupReport
impl PartialEq for SqliteBackupReport
impl StructuralPartialEq for SqliteBackupReport
Auto Trait Implementations§
impl Freeze for SqliteBackupReport
impl RefUnwindSafe for SqliteBackupReport
impl Send for SqliteBackupReport
impl Sync for SqliteBackupReport
impl Unpin for SqliteBackupReport
impl UnsafeUnpin for SqliteBackupReport
impl UnwindSafe for SqliteBackupReport
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