pub struct VectorStoreFileBatchObjectFileCounts {
pub cancelled: i32,
pub completed: i32,
pub failed: i32,
pub in_progress: i32,
pub total: i32,
}
Fields§
§cancelled: i32
The number of files that where cancelled.
completed: i32
The number of files that have been processed.
failed: i32
The number of files that have failed to process.
in_progress: i32
The number of files that are currently being processed.
total: i32
The total number of files.
Trait Implementations§
Source§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
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