pub struct VectorIndexJobRow {
pub status: String,
pub processed_sessions: u32,
pub total_sessions: u32,
pub message: Option<String>,
pub started_at: Option<String>,
pub finished_at: Option<String>,
}Expand description
Vector indexing progress/status snapshot.
Fields§
§status: String§processed_sessions: u32§total_sessions: u32§message: Option<String>§started_at: Option<String>§finished_at: Option<String>Trait Implementations§
Source§impl Clone for VectorIndexJobRow
impl Clone for VectorIndexJobRow
Source§fn clone(&self) -> VectorIndexJobRow
fn clone(&self) -> VectorIndexJobRow
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 VectorIndexJobRow
impl Debug for VectorIndexJobRow
Source§impl PartialEq for VectorIndexJobRow
impl PartialEq for VectorIndexJobRow
impl Eq for VectorIndexJobRow
impl StructuralPartialEq for VectorIndexJobRow
Auto Trait Implementations§
impl Freeze for VectorIndexJobRow
impl RefUnwindSafe for VectorIndexJobRow
impl Send for VectorIndexJobRow
impl Sync for VectorIndexJobRow
impl Unpin for VectorIndexJobRow
impl UnsafeUnpin for VectorIndexJobRow
impl UnwindSafe for VectorIndexJobRow
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