pub struct FileMeta {
pub len: u64,
}Expand description
Subset of std::fs::Metadata exposed through the
FileSystemProvider port. Keeping the surface minimal lets test
adapters synthesize values without instantiating real OS metadata.
Fields§
§len: u64Total size of the file in bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileMeta
impl RefUnwindSafe for FileMeta
impl Send for FileMeta
impl Sync for FileMeta
impl Unpin for FileMeta
impl UnsafeUnpin for FileMeta
impl UnwindSafe for FileMeta
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