Struct tantivy_columnar::column_values::EmptyColumnValues
source · pub struct EmptyColumnValues;
Expand description
Empty column of values.
Trait Implementations§
source§impl<T: PartialOrd + Default> ColumnValues<T> for EmptyColumnValues
impl<T: PartialOrd + Default> ColumnValues<T> for EmptyColumnValues
source§fn get_vals(&self, indexes: &[u32], output: &mut [T])
fn get_vals(&self, indexes: &[u32], output: &mut [T])
Allows to push down multiple fetch calls, to avoid dynamic dispatch overhead. Read more
source§fn get_vals_opt(&self, indexes: &[u32], output: &mut [Option<T>])
fn get_vals_opt(&self, indexes: &[u32], output: &mut [Option<T>])
Allows to push down multiple fetch calls, to avoid dynamic dispatch overhead.
The slightly weird
Option<T>
in output allows pushdown to full columns. Read moresource§fn get_range(&self, start: u64, output: &mut [T])
fn get_range(&self, start: u64, output: &mut [T])
Fills an output buffer with the fast field values
associated with the
DocId
going from
start
to start + output.len()
. Read moresource§fn get_row_ids_for_value_range(
&self,
value_range: RangeInclusive<T>,
row_id_range: Range<RowId>,
row_id_hits: &mut Vec<RowId>
)
fn get_row_ids_for_value_range( &self, value_range: RangeInclusive<T>, row_id_range: Range<RowId>, row_id_hits: &mut Vec<RowId> )
Get the row ids of values which are in the provided value range. Read more
Auto Trait Implementations§
impl Freeze for EmptyColumnValues
impl RefUnwindSafe for EmptyColumnValues
impl Send for EmptyColumnValues
impl Sync for EmptyColumnValues
impl Unpin for EmptyColumnValues
impl UnwindSafe for EmptyColumnValues
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.