pub struct LegacyFile {
pub path: PathBuf,
pub stem: String,
pub ext: String,
pub date: NaiveDate,
pub content: String,
}Expand description
A legacy file discovered during scanning.
Fields§
§path: PathBuf§stem: String§ext: String§date: NaiveDate§content: StringAuto Trait Implementations§
impl Freeze for LegacyFile
impl RefUnwindSafe for LegacyFile
impl Send for LegacyFile
impl Sync for LegacyFile
impl Unpin for LegacyFile
impl UnsafeUnpin for LegacyFile
impl UnwindSafe for LegacyFile
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