pub struct BackupResult {
pub service_name: String,
pub timestamp: String,
pub size_bytes: u64,
pub target: String,
}Expand description
Result of a single backup operation.
Fields§
§service_name: String§timestamp: String§size_bytes: u64§target: StringTrait 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 UnsafeUnpin 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