pub struct LocalFile {
pub exists: bool,
pub size: u64,
}Expand description
The caller’s on-disk probe of one manifest path.
Fields§
§exists: boolWhether the file exists on disk.
size: u64Size of the file in bytes (zero when absent).
Trait Implementations§
impl Copy for LocalFile
impl Eq for LocalFile
impl StructuralPartialEq for LocalFile
Auto Trait Implementations§
impl Freeze for LocalFile
impl RefUnwindSafe for LocalFile
impl Send for LocalFile
impl Sync for LocalFile
impl Unpin for LocalFile
impl UnsafeUnpin for LocalFile
impl UnwindSafe for LocalFile
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