pub struct BackupResult {
pub path: PathBuf,
pub deck_name: String,
pub size_bytes: u64,
pub include_scheduling: bool,
}Expand description
Result of a deck backup operation.
Fields§
§path: PathBufPath to the created backup file.
deck_name: StringName of the backed up deck.
size_bytes: u64Size of the backup file in bytes.
include_scheduling: boolWhether scheduling data was included.
Trait Implementations§
Source§impl Clone for BackupResult
impl Clone for BackupResult
Source§fn clone(&self) -> BackupResult
fn clone(&self) -> BackupResult
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 BackupResult
impl RefUnwindSafe for BackupResult
impl Send for BackupResult
impl Sync for BackupResult
impl Unpin for BackupResult
impl UnwindSafe for BackupResult
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