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