pub struct RetrieveVectorStoreFileContentParams {
pub vector_store_id: String,
pub file_id: String,
}
Fields§
§vector_store_id: String
The ID of the vector store.
file_id: String
The ID of the file within the vector store.
Implementations§
Source§impl RetrieveVectorStoreFileContentParams
impl RetrieveVectorStoreFileContentParams
Sourcepub fn builder() -> RetrieveVectorStoreFileContentParamsBuilder<((), ())>
pub fn builder() -> RetrieveVectorStoreFileContentParamsBuilder<((), ())>
Create a builder for building RetrieveVectorStoreFileContentParams
.
On the builder, call .vector_store_id(...)
, .file_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of RetrieveVectorStoreFileContentParams
.
Trait Implementations§
Source§impl Clone for RetrieveVectorStoreFileContentParams
impl Clone for RetrieveVectorStoreFileContentParams
Source§fn clone(&self) -> RetrieveVectorStoreFileContentParams
fn clone(&self) -> RetrieveVectorStoreFileContentParams
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<'de> Deserialize<'de> for RetrieveVectorStoreFileContentParams
impl<'de> Deserialize<'de> for RetrieveVectorStoreFileContentParams
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 RetrieveVectorStoreFileContentParams
impl PartialEq for RetrieveVectorStoreFileContentParams
Source§fn eq(&self, other: &RetrieveVectorStoreFileContentParams) -> bool
fn eq(&self, other: &RetrieveVectorStoreFileContentParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RetrieveVectorStoreFileContentParams
Auto Trait Implementations§
impl Freeze for RetrieveVectorStoreFileContentParams
impl RefUnwindSafe for RetrieveVectorStoreFileContentParams
impl Send for RetrieveVectorStoreFileContentParams
impl Sync for RetrieveVectorStoreFileContentParams
impl Unpin for RetrieveVectorStoreFileContentParams
impl UnwindSafe for RetrieveVectorStoreFileContentParams
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