pub struct VectorStoreFileBatchObjectFileCounts {
pub in_progress: u64,
pub completed: u64,
pub failed: u64,
pub cancelled: u64,
pub total: u64,
}
Fields§
§in_progress: u64
The number of files that are currently being processed.
completed: u64
The number of files that have been processed.
failed: u64
The number of files that have failed to process.
cancelled: u64
The number of files that where cancelled.
total: u64
The total number of files.
Implementations§
Source§impl VectorStoreFileBatchObjectFileCounts
impl VectorStoreFileBatchObjectFileCounts
Sourcepub fn builder() -> VectorStoreFileBatchObjectFileCountsBuilder<((), (), (), (), ())>
pub fn builder() -> VectorStoreFileBatchObjectFileCountsBuilder<((), (), (), (), ())>
Create a builder for building VectorStoreFileBatchObjectFileCounts
.
On the builder, call .in_progress(...)
, .completed(...)
, .failed(...)
, .cancelled(...)
, .total(...)
to set the values of the fields.
Finally, call .build()
to create the instance of VectorStoreFileBatchObjectFileCounts
.
Trait Implementations§
Source§impl Clone for VectorStoreFileBatchObjectFileCounts
impl Clone for VectorStoreFileBatchObjectFileCounts
Source§fn clone(&self) -> VectorStoreFileBatchObjectFileCounts
fn clone(&self) -> VectorStoreFileBatchObjectFileCounts
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for VectorStoreFileBatchObjectFileCounts
impl<'de> Deserialize<'de> for VectorStoreFileBatchObjectFileCounts
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 VectorStoreFileBatchObjectFileCounts
impl PartialEq for VectorStoreFileBatchObjectFileCounts
Source§fn eq(&self, other: &VectorStoreFileBatchObjectFileCounts) -> bool
fn eq(&self, other: &VectorStoreFileBatchObjectFileCounts) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for VectorStoreFileBatchObjectFileCounts
impl StructuralPartialEq for VectorStoreFileBatchObjectFileCounts
Auto Trait Implementations§
impl Freeze for VectorStoreFileBatchObjectFileCounts
impl RefUnwindSafe for VectorStoreFileBatchObjectFileCounts
impl Send for VectorStoreFileBatchObjectFileCounts
impl Sync for VectorStoreFileBatchObjectFileCounts
impl Unpin for VectorStoreFileBatchObjectFileCounts
impl UnwindSafe for VectorStoreFileBatchObjectFileCounts
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