pub struct VectorStoreFileCounts {
pub cancelled: Option<u64>,
pub completed: Option<u64>,
pub failed: Option<u64>,
pub in_progress: Option<u64>,
pub total: Option<u64>,
pub extra: BTreeMap<String, Value>,
}Expand description
表示 vector store 文件计数。
Fields§
§cancelled: Option<u64>已取消文件数量。
completed: Option<u64>已完成文件数量。
failed: Option<u64>失败文件数量。
in_progress: Option<u64>处理中数量。
total: Option<u64>文件总数。
extra: BTreeMap<String, Value>额外字段。
Trait Implementations§
Source§impl Clone for VectorStoreFileCounts
impl Clone for VectorStoreFileCounts
Source§fn clone(&self) -> VectorStoreFileCounts
fn clone(&self) -> VectorStoreFileCounts
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 VectorStoreFileCounts
impl Debug for VectorStoreFileCounts
Source§impl Default for VectorStoreFileCounts
impl Default for VectorStoreFileCounts
Source§fn default() -> VectorStoreFileCounts
fn default() -> VectorStoreFileCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VectorStoreFileCounts
impl<'de> Deserialize<'de> for VectorStoreFileCounts
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 VectorStoreFileCounts
impl RefUnwindSafe for VectorStoreFileCounts
impl Send for VectorStoreFileCounts
impl Sync for VectorStoreFileCounts
impl Unpin for VectorStoreFileCounts
impl UnsafeUnpin for VectorStoreFileCounts
impl UnwindSafe for VectorStoreFileCounts
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