pub struct QueryMeta {
pub times: [u64; 4],
pub attrs: AttrFlags,
pub eof: u64,
pub alloc: u64,
pub is_dir: bool,
}Expand description
Neutral metadata snapshot used by query payload encoders.
Fields§
§times: [u64; 4]Creation / access / write / change FILETIMEs.
attrs: AttrFlagsAttribute flags.
eof: u64End-of-file size.
alloc: u64Allocation size.
is_dir: boolDirectory flag.
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