pub struct VectorStoreObjectFileCounts {
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 successfully processed.
failed: u64
The number of files that have failed to process.
cancelled: u64
The number of files that were cancelled.
total: u64
The total number of files.
Implementations§
Source§impl VectorStoreObjectFileCounts
impl VectorStoreObjectFileCounts
Sourcepub fn builder() -> VectorStoreObjectFileCountsBuilder<((), (), (), (), ())>
pub fn builder() -> VectorStoreObjectFileCountsBuilder<((), (), (), (), ())>
Create a builder for building VectorStoreObjectFileCounts
.
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 VectorStoreObjectFileCounts
.
Trait Implementations§
Source§impl Clone for VectorStoreObjectFileCounts
impl Clone for VectorStoreObjectFileCounts
Source§fn clone(&self) -> VectorStoreObjectFileCounts
fn clone(&self) -> VectorStoreObjectFileCounts
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 Debug for VectorStoreObjectFileCounts
impl Debug for VectorStoreObjectFileCounts
Source§impl<'de> Deserialize<'de> for VectorStoreObjectFileCounts
impl<'de> Deserialize<'de> for VectorStoreObjectFileCounts
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
impl Copy for VectorStoreObjectFileCounts
impl StructuralPartialEq for VectorStoreObjectFileCounts
Auto Trait Implementations§
impl Freeze for VectorStoreObjectFileCounts
impl RefUnwindSafe for VectorStoreObjectFileCounts
impl Send for VectorStoreObjectFileCounts
impl Sync for VectorStoreObjectFileCounts
impl Unpin for VectorStoreObjectFileCounts
impl UnwindSafe for VectorStoreObjectFileCounts
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