qdrant_client::qdrant::payload_index_params

Enum IndexParams

source
pub enum IndexParams {
    KeywordIndexParams(KeywordIndexParams),
    IntegerIndexParams(IntegerIndexParams),
    FloatIndexParams(FloatIndexParams),
    GeoIndexParams(GeoIndexParams),
    TextIndexParams(TextIndexParams),
    BoolIndexParams(BoolIndexParams),
    DatetimeIndexParams(DatetimeIndexParams),
    UuidIndexParams(UuidIndexParams),
}

Variants§

§

KeywordIndexParams(KeywordIndexParams)

Parameters for keyword index

§

IntegerIndexParams(IntegerIndexParams)

Parameters for integer index

§

FloatIndexParams(FloatIndexParams)

Parameters for float index

§

GeoIndexParams(GeoIndexParams)

Parameters for geo index

§

TextIndexParams(TextIndexParams)

Parameters for text index

§

BoolIndexParams(BoolIndexParams)

Parameters for bool index

§

DatetimeIndexParams(DatetimeIndexParams)

Parameters for datetime index

§

UuidIndexParams(UuidIndexParams)

Parameters for uuid index

Implementations§

source§

impl IndexParams

source

pub fn encode(&self, buf: &mut impl BufMut)

Encodes the message to a buffer.

source

pub fn merge( field: &mut Option<IndexParams>, tag: u32, wire_type: WireType, buf: &mut impl Buf, ctx: DecodeContext, ) -> Result<(), DecodeError>

Decodes an instance of the message from a buffer, and merges it into self.

source

pub fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.

Trait Implementations§

source§

impl Clone for IndexParams

source§

fn clone(&self) -> IndexParams

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for IndexParams

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<BoolIndexParams> for IndexParams

source§

fn from(value: BoolIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<DatetimeIndexParams> for IndexParams

source§

fn from(value: DatetimeIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<DatetimeIndexParamsBuilder> for IndexParams

source§

fn from(value: DatetimeIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl From<FloatIndexParams> for IndexParams

source§

fn from(value: FloatIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<FloatIndexParamsBuilder> for IndexParams

source§

fn from(value: FloatIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl From<GeoIndexParams> for IndexParams

source§

fn from(value: GeoIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<GeoIndexParamsBuilder> for IndexParams

source§

fn from(value: GeoIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl From<IndexParams> for PayloadIndexParams

source§

fn from(value: IndexParams) -> Self

Converts to this type from the input type.
source§

impl From<IntegerIndexParams> for IndexParams

source§

fn from(value: IntegerIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<IntegerIndexParamsBuilder> for IndexParams

source§

fn from(value: IntegerIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl From<KeywordIndexParams> for IndexParams

source§

fn from(value: KeywordIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<KeywordIndexParamsBuilder> for IndexParams

source§

fn from(value: KeywordIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl From<TextIndexParams> for IndexParams

source§

fn from(value: TextIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<TextIndexParamsBuilder> for IndexParams

source§

fn from(value: TextIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl From<UuidIndexParams> for IndexParams

source§

fn from(value: UuidIndexParams) -> Self

Converts to this type from the input type.
source§

impl From<UuidIndexParamsBuilder> for IndexParams

source§

fn from(value: UuidIndexParamsBuilder) -> Self

Converts to this type from the input type.
source§

impl PartialEq for IndexParams

source§

fn eq(&self, other: &IndexParams) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for IndexParams

source§

impl StructuralPartialEq for IndexParams

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromRef<T> for T
where T: Clone,

source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more