pub struct CollectionProgress {
pub collection_name: String,
pub status: String,
pub progress: f32,
pub vector_count: usize,
pub error_message: Option<String>,
pub last_updated: String,
}
Expand description
Collection progress
Fields§
§collection_name: String
Collection name
status: String
Status
progress: f32
Progress percentage
vector_count: usize
Vector count
error_message: Option<String>
Error message if any
last_updated: String
Last updated timestamp
Trait Implementations§
Source§impl Clone for CollectionProgress
impl Clone for CollectionProgress
Source§fn clone(&self) -> CollectionProgress
fn clone(&self) -> CollectionProgress
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 CollectionProgress
impl Debug for CollectionProgress
Source§impl<'de> Deserialize<'de> for CollectionProgress
impl<'de> Deserialize<'de> for CollectionProgress
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 CollectionProgress
impl RefUnwindSafe for CollectionProgress
impl Send for CollectionProgress
impl Sync for CollectionProgress
impl Unpin for CollectionProgress
impl UnwindSafe for CollectionProgress
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