pub struct FilesystemMigrationReport {
pub backup_dir: Option<PathBuf>,
pub entries_relocated: usize,
}Expand description
Result of a successful filesystem migration.
Fields§
§backup_dir: Option<PathBuf>Timestamped backup directory (e.g. <install>/backup-20260516T140530).
Empty when no migration ran.
entries_relocated: usizeNumber of top-level entries relocated.
Trait Implementations§
Source§impl Clone for FilesystemMigrationReport
impl Clone for FilesystemMigrationReport
Source§fn clone(&self) -> FilesystemMigrationReport
fn clone(&self) -> FilesystemMigrationReport
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 FilesystemMigrationReport
impl RefUnwindSafe for FilesystemMigrationReport
impl Send for FilesystemMigrationReport
impl Sync for FilesystemMigrationReport
impl Unpin for FilesystemMigrationReport
impl UnsafeUnpin for FilesystemMigrationReport
impl UnwindSafe for FilesystemMigrationReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more