pub struct RestoreInfo {
pub backup_path: PathBuf,
pub restored_at: String,
pub manifest: BackupManifest,
}Expand description
Information about a completed restore.
Fields§
§backup_path: PathBufPath to the backup that was restored
restored_at: StringWhen the restore was performed (ISO 8601)
manifest: BackupManifestManifest from the restored backup
Trait Implementations§
Source§impl Clone for RestoreInfo
impl Clone for RestoreInfo
Source§fn clone(&self) -> RestoreInfo
fn clone(&self) -> RestoreInfo
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 RestoreInfo
impl RefUnwindSafe for RestoreInfo
impl Send for RestoreInfo
impl Sync for RestoreInfo
impl Unpin for RestoreInfo
impl UnsafeUnpin for RestoreInfo
impl UnwindSafe for RestoreInfo
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