pub struct ModifyVectorStoreParams {
pub vector_store_id: String,
}
Fields§
§vector_store_id: String
The ID of the vector store to modify.
Implementations§
Trait Implementations§
Source§impl Clone for ModifyVectorStoreParams
impl Clone for ModifyVectorStoreParams
Source§fn clone(&self) -> ModifyVectorStoreParams
fn clone(&self) -> ModifyVectorStoreParams
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 ModifyVectorStoreParams
impl Debug for ModifyVectorStoreParams
Source§impl<'de> Deserialize<'de> for ModifyVectorStoreParams
impl<'de> Deserialize<'de> for ModifyVectorStoreParams
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 ModifyVectorStoreParams
impl PartialEq for ModifyVectorStoreParams
Source§fn eq(&self, other: &ModifyVectorStoreParams) -> bool
fn eq(&self, other: &ModifyVectorStoreParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for ModifyVectorStoreParams
impl Serialize for ModifyVectorStoreParams
impl StructuralPartialEq for ModifyVectorStoreParams
Auto Trait Implementations§
impl Freeze for ModifyVectorStoreParams
impl RefUnwindSafe for ModifyVectorStoreParams
impl Send for ModifyVectorStoreParams
impl Sync for ModifyVectorStoreParams
impl Unpin for ModifyVectorStoreParams
impl UnwindSafe for ModifyVectorStoreParams
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