pub struct QueryMeta {
pub times: [u64; 4],
pub attrs: u32,
pub eof: u64,
pub alloc: u64,
pub is_dir: bool,
}Expand description
Neutral metadata snapshot fed to the encoders below.
Fields§
§times: [u64; 4]Creation / last-access / last-write / change FILETIMEs (raw NT).
attrs: u32Attribute flags.
eof: u64End of file in bytes.
alloc: u64Allocation size in bytes.
is_dir: boolTrue when the object is a directory.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueryMeta
impl RefUnwindSafe for QueryMeta
impl Send for QueryMeta
impl Sync for QueryMeta
impl Unpin for QueryMeta
impl UnsafeUnpin for QueryMeta
impl UnwindSafe for QueryMeta
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