pub struct SearchPoints {
pub collection_name: String,
pub vector: Vec<f32>,
pub filter: Option<Filter>,
pub limit: u64,
pub with_payload: Option<WithPayloadSelector>,
pub params: Option<SearchParams>,
pub score_threshold: Option<f32>,
pub offset: Option<u64>,
pub vector_name: Option<String>,
pub with_vectors: Option<WithVectorsSelector>,
pub read_consistency: Option<ReadConsistency>,
}
Fields§
§collection_name: String
name of the collection
vector: Vec<f32>
vector
filter: Option<Filter>
Filter conditions - return only those points that satisfy the specified conditions
limit: u64
Max number of result
with_payload: Option<WithPayloadSelector>
Options for specifying which payload to include or not
params: Option<SearchParams>
Search config
score_threshold: Option<f32>
If provided - cut off results with worse scores
offset: Option<u64>
Offset of the result
vector_name: Option<String>
Which vector to use for search, if not specified - use default vector
with_vectors: Option<WithVectorsSelector>
Options for specifying which vectors to include into response
read_consistency: Option<ReadConsistency>
Options for specifying read consistency guarantees
Implementations§
Source§impl SearchPoints
impl SearchPoints
Sourcepub fn score_threshold(&self) -> f32
pub fn score_threshold(&self) -> f32
Returns the value of score_threshold
, or the default value if score_threshold
is unset.
Sourcepub fn offset(&self) -> u64
pub fn offset(&self) -> u64
Returns the value of offset
, or the default value if offset
is unset.
Sourcepub fn vector_name(&self) -> &str
pub fn vector_name(&self) -> &str
Returns the value of vector_name
, or the default value if vector_name
is unset.
Trait Implementations§
Source§impl Clone for SearchPoints
impl Clone for SearchPoints
Source§fn clone(&self) -> SearchPoints
fn clone(&self) -> SearchPoints
Returns a copy of the value. Read more
1.0.0 · 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 SearchPoints
impl Debug for SearchPoints
Source§impl Default for SearchPoints
impl Default for SearchPoints
Source§impl Message for SearchPoints
impl Message for SearchPoints
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for SearchPoints
impl PartialEq for SearchPoints
impl StructuralPartialEq for SearchPoints
Auto Trait Implementations§
impl Freeze for SearchPoints
impl RefUnwindSafe for SearchPoints
impl Send for SearchPoints
impl Sync for SearchPoints
impl Unpin for SearchPoints
impl UnwindSafe for SearchPoints
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request