struct ParsedMeta {
parent_frn: u64,
frn: u64,
name_off: u32,
name_len: u32,
is_dir: bool,
attrs: RecordAttrs,
}Expand description
One entry parsed by a worker; the name lives in its batch’s pools.
Fields§
§parent_frn: u64Raw OS values (the parse layer stays in u64); wrapped into Frn
when the entry crosses into the index in append_batches.
frn: u64§name_off: u32§name_len: u32§is_dir: bool§attrs: RecordAttrsAuto Trait Implementations§
impl Freeze for ParsedMeta
impl RefUnwindSafe for ParsedMeta
impl Send for ParsedMeta
impl Sync for ParsedMeta
impl Unpin for ParsedMeta
impl UnsafeUnpin for ParsedMeta
impl UnwindSafe for ParsedMeta
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more