pub struct VectorStoreObjectFileCounts {
pub cancelled: i32,
pub completed: i32,
pub failed: i32,
pub in_progress: i32,
pub total: i32,
}
Fields§
§cancelled: i32
The number of files that were cancelled.
completed: i32
The number of files that have been successfully 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 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
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