pub struct IdfParams {
pub corpus: Option<FilterExpr>,
}Expand description
Sparse-vector IDF scope.
corpus = None is collection-wide (PARAMS (idf = 'global')). Otherwise
IDF statistics are computed over points matching the QQL filter
(PARAMS (idf = WHERE tenant_id = 'acme')). The planner lowers the filter
to a Qdrant Filter; the language never takes a JSON corpus object.
Fields§
§corpus: Option<FilterExpr>Corpus as a QQL filter. None = global collection statistics.
Trait Implementations§
impl StructuralPartialEq for IdfParams
Auto Trait Implementations§
impl Freeze for IdfParams
impl RefUnwindSafe for IdfParams
impl Send for IdfParams
impl Sync for IdfParams
impl Unpin for IdfParams
impl UnsafeUnpin for IdfParams
impl UnwindSafe for IdfParams
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