pub struct SearchVectorStoreParams {
pub vector_store_id: String,
}
Fields§
§vector_store_id: String
The ID of the vector store to search.
Implementations§
Trait Implementations§
Source§impl Clone for SearchVectorStoreParams
impl Clone for SearchVectorStoreParams
Source§fn clone(&self) -> SearchVectorStoreParams
fn clone(&self) -> SearchVectorStoreParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SearchVectorStoreParams
impl Debug for SearchVectorStoreParams
Source§impl<'de> Deserialize<'de> for SearchVectorStoreParams
impl<'de> Deserialize<'de> for SearchVectorStoreParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SearchVectorStoreParams
impl PartialEq for SearchVectorStoreParams
Source§fn eq(&self, other: &SearchVectorStoreParams) -> bool
fn eq(&self, other: &SearchVectorStoreParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for SearchVectorStoreParams
impl Serialize for SearchVectorStoreParams
impl StructuralPartialEq for SearchVectorStoreParams
Auto Trait Implementations§
impl Freeze for SearchVectorStoreParams
impl RefUnwindSafe for SearchVectorStoreParams
impl Send for SearchVectorStoreParams
impl Sync for SearchVectorStoreParams
impl Unpin for SearchVectorStoreParams
impl UnwindSafe for SearchVectorStoreParams
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