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