pub struct LostFile {
pub name: String,
pub lba: u32,
pub size: u32,
pub parent_lba: u32,
}Expand description
A file found inside an orphaned directory extent — present on the disc but not reachable from the active directory tree (a recovered “lost” file).
Fields§
§name: StringISO 9660 name of the file.
lba: u32LBA of the file’s data extent.
size: u32File size in bytes.
parent_lba: u32LBA of the orphaned directory extent the file was found in.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LostFile
impl RefUnwindSafe for LostFile
impl Send for LostFile
impl Sync for LostFile
impl Unpin for LostFile
impl UnsafeUnpin for LostFile
impl UnwindSafe for LostFile
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