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