pub struct EmbeddingBootstrap {
pub provider: String,
pub api_base: String,
pub model: String,
pub vector_dim: usize,
pub query_prefix: Option<String>,
pub api_key: Option<String>,
}Fields§
§provider: String§api_base: String§model: String§vector_dim: usize§query_prefix: Option<String>§api_key: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for EmbeddingBootstrap
impl Clone for EmbeddingBootstrap
Source§fn clone(&self) -> EmbeddingBootstrap
fn clone(&self) -> EmbeddingBootstrap
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 EmbeddingBootstrap
impl Debug for EmbeddingBootstrap
impl Eq for EmbeddingBootstrap
Source§impl PartialEq for EmbeddingBootstrap
impl PartialEq for EmbeddingBootstrap
Source§fn eq(&self, other: &EmbeddingBootstrap) -> bool
fn eq(&self, other: &EmbeddingBootstrap) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EmbeddingBootstrap
Auto Trait Implementations§
impl Freeze for EmbeddingBootstrap
impl RefUnwindSafe for EmbeddingBootstrap
impl Send for EmbeddingBootstrap
impl Sync for EmbeddingBootstrap
impl Unpin for EmbeddingBootstrap
impl UnsafeUnpin for EmbeddingBootstrap
impl UnwindSafe for EmbeddingBootstrap
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.