pub struct ReindexProgress {
pub namespace: String,
pub total_files: usize,
pub processed_files: usize,
pub indexed_files: usize,
pub skipped_files: usize,
pub failed_files: usize,
pub total_chunks: usize,
}Fields§
§namespace: String§total_files: usize§processed_files: usize§indexed_files: usize§skipped_files: usize§failed_files: usize§total_chunks: usizeTrait Implementations§
Source§impl Clone for ReindexProgress
impl Clone for ReindexProgress
Source§fn clone(&self) -> ReindexProgress
fn clone(&self) -> ReindexProgress
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReindexProgress
impl Debug for ReindexProgress
Source§impl Default for ReindexProgress
impl Default for ReindexProgress
Source§fn default() -> ReindexProgress
fn default() -> ReindexProgress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReindexProgress
impl<'de> Deserialize<'de> for ReindexProgress
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
Source§impl PartialEq for ReindexProgress
impl PartialEq for ReindexProgress
Source§fn eq(&self, other: &ReindexProgress) -> bool
fn eq(&self, other: &ReindexProgress) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReindexProgress
impl Serialize for ReindexProgress
impl Eq for ReindexProgress
impl StructuralPartialEq for ReindexProgress
Auto Trait Implementations§
impl Freeze for ReindexProgress
impl RefUnwindSafe for ReindexProgress
impl Send for ReindexProgress
impl Sync for ReindexProgress
impl Unpin for ReindexProgress
impl UnsafeUnpin for ReindexProgress
impl UnwindSafe for ReindexProgress
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