pub struct LogicalIndex {
pub entries: Vec<IndexEntry>,
}Expand description
The complete logical stage-zero index: rows unique, path-byte sorted, and prefix-free directly after parsing.
Fields§
§entries: Vec<IndexEntry>Trait Implementations§
Source§impl Clone for LogicalIndex
impl Clone for LogicalIndex
Source§fn clone(&self) -> LogicalIndex
fn clone(&self) -> LogicalIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LogicalIndex
impl Debug for LogicalIndex
Source§impl Default for LogicalIndex
impl Default for LogicalIndex
Source§fn default() -> LogicalIndex
fn default() -> LogicalIndex
Returns the “default value” for a type. Read more
impl Eq for LogicalIndex
Source§impl PartialEq for LogicalIndex
impl PartialEq for LogicalIndex
impl StructuralPartialEq for LogicalIndex
Auto Trait Implementations§
impl Freeze for LogicalIndex
impl RefUnwindSafe for LogicalIndex
impl Send for LogicalIndex
impl Sync for LogicalIndex
impl Unpin for LogicalIndex
impl UnsafeUnpin for LogicalIndex
impl UnwindSafe for LogicalIndex
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