pub enum VectorConfig {
DenseConfig(DenseVectorCreationConfig),
SparseConfig(SparseVectorCreationConfig),
}Expand description
Configuration for the new vector - either dense or sparse
Variants§
DenseConfig(DenseVectorCreationConfig)
Dense vector parameters
SparseConfig(SparseVectorCreationConfig)
Sparse vector parameters
Implementations§
Source§impl VectorConfig
impl VectorConfig
Sourcepub fn merge(
field: &mut Option<VectorConfig>,
tag: u32,
wire_type: WireType,
buf: &mut impl Buf,
ctx: DecodeContext,
) -> Result<(), DecodeError>
pub fn merge( field: &mut Option<VectorConfig>, 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.
Sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations§
Source§impl Clone for VectorConfig
impl Clone for VectorConfig
Source§fn clone(&self) -> VectorConfig
fn clone(&self) -> VectorConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VectorConfig
impl Debug for VectorConfig
Source§impl From<DenseVectorCreationConfig> for VectorConfig
impl From<DenseVectorCreationConfig> for VectorConfig
Source§fn from(value: DenseVectorCreationConfig) -> Self
fn from(value: DenseVectorCreationConfig) -> Self
Converts to this type from the input type.
Source§impl From<DenseVectorCreationConfigBuilder> for VectorConfig
impl From<DenseVectorCreationConfigBuilder> for VectorConfig
Source§fn from(value: DenseVectorCreationConfigBuilder) -> Self
fn from(value: DenseVectorCreationConfigBuilder) -> Self
Converts to this type from the input type.
Source§impl From<SparseVectorCreationConfig> for VectorConfig
impl From<SparseVectorCreationConfig> for VectorConfig
Source§fn from(value: SparseVectorCreationConfig) -> Self
fn from(value: SparseVectorCreationConfig) -> Self
Converts to this type from the input type.
Source§impl From<SparseVectorCreationConfigBuilder> for VectorConfig
impl From<SparseVectorCreationConfigBuilder> for VectorConfig
Source§fn from(value: SparseVectorCreationConfigBuilder) -> Self
fn from(value: SparseVectorCreationConfigBuilder) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VectorConfig
impl PartialEq for VectorConfig
Source§fn eq(&self, other: &VectorConfig) -> bool
fn eq(&self, other: &VectorConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VectorConfig
impl StructuralPartialEq for VectorConfig
Auto Trait Implementations§
impl Freeze for VectorConfig
impl RefUnwindSafe for VectorConfig
impl Send for VectorConfig
impl Sync for VectorConfig
impl Unpin for VectorConfig
impl UnsafeUnpin for VectorConfig
impl UnwindSafe for VectorConfig
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