pub struct WatchRefreshSummary {
pub space: String,
pub collection: String,
pub started_at: String,
pub finished_at: String,
pub elapsed_ms: u64,
pub scanned_docs: usize,
pub changed_docs: usize,
pub embedded_chunks: usize,
}Fields§
§space: String§collection: String§started_at: String§finished_at: String§elapsed_ms: u64§scanned_docs: usize§changed_docs: usize§embedded_chunks: usizeTrait Implementations§
Source§impl Clone for WatchRefreshSummary
impl Clone for WatchRefreshSummary
Source§fn clone(&self) -> WatchRefreshSummary
fn clone(&self) -> WatchRefreshSummary
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 WatchRefreshSummary
impl Debug for WatchRefreshSummary
Source§impl<'de> Deserialize<'de> for WatchRefreshSummary
impl<'de> Deserialize<'de> for WatchRefreshSummary
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 WatchRefreshSummary
impl PartialEq for WatchRefreshSummary
Source§fn eq(&self, other: &WatchRefreshSummary) -> bool
fn eq(&self, other: &WatchRefreshSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WatchRefreshSummary
impl Serialize for WatchRefreshSummary
impl Eq for WatchRefreshSummary
impl StructuralPartialEq for WatchRefreshSummary
Auto Trait Implementations§
impl Freeze for WatchRefreshSummary
impl RefUnwindSafe for WatchRefreshSummary
impl Send for WatchRefreshSummary
impl Sync for WatchRefreshSummary
impl Unpin for WatchRefreshSummary
impl UnsafeUnpin for WatchRefreshSummary
impl UnwindSafe for WatchRefreshSummary
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