pub struct Similar<'a> { /* private fields */ }
Implementations§
Source§impl<'a> Similar<'a>
impl<'a> Similar<'a>
pub fn new( id: DocumentId, offset: usize, limit: usize, index: &'a Index, rtxn: &'a RoTxn<'a>, embedder_name: String, embedder: Arc<Embedder>, quantized: bool, ) -> Self
pub fn filter(&mut self, filter: Filter<'a>) -> &mut Self
pub fn ranking_score_threshold( &mut self, ranking_score_threshold: f64, ) -> &mut Self
pub fn execute(&self) -> Result<SearchResult>
Auto Trait Implementations§
impl<'a> Freeze for Similar<'a>
impl<'a> !RefUnwindSafe for Similar<'a>
impl<'a> !Send for Similar<'a>
impl<'a> !Sync for Similar<'a>
impl<'a> Unpin for Similar<'a>
impl<'a> !UnwindSafe for Similar<'a>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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