pub struct GetVectorStoreFileParams {
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 being retrieved.
Implementations§
Trait Implementations§
Source§impl Clone for GetVectorStoreFileParams
impl Clone for GetVectorStoreFileParams
Source§fn clone(&self) -> GetVectorStoreFileParams
fn clone(&self) -> GetVectorStoreFileParams
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 GetVectorStoreFileParams
impl Debug for GetVectorStoreFileParams
Source§impl<'de> Deserialize<'de> for GetVectorStoreFileParams
impl<'de> Deserialize<'de> for GetVectorStoreFileParams
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 GetVectorStoreFileParams
impl PartialEq for GetVectorStoreFileParams
Source§fn eq(&self, other: &GetVectorStoreFileParams) -> bool
fn eq(&self, other: &GetVectorStoreFileParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for GetVectorStoreFileParams
impl Serialize for GetVectorStoreFileParams
impl StructuralPartialEq for GetVectorStoreFileParams
Auto Trait Implementations§
impl Freeze for GetVectorStoreFileParams
impl RefUnwindSafe for GetVectorStoreFileParams
impl Send for GetVectorStoreFileParams
impl Sync for GetVectorStoreFileParams
impl Unpin for GetVectorStoreFileParams
impl UnwindSafe for GetVectorStoreFileParams
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