pub struct TextIndexStats {
pub document_count: u64,
pub needs_rebuild: bool,
pub last_rebuild_at: Option<DateTime<Utc>>,
}Fields§
§document_count: u64§needs_rebuild: bool§last_rebuild_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for TextIndexStats
impl Clone for TextIndexStats
Source§fn clone(&self) -> TextIndexStats
fn clone(&self) -> TextIndexStats
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 TextIndexStats
impl Debug for TextIndexStats
Source§impl<'de> Deserialize<'de> for TextIndexStats
impl<'de> Deserialize<'de> for TextIndexStats
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 TextIndexStats
impl RefUnwindSafe for TextIndexStats
impl Send for TextIndexStats
impl Sync for TextIndexStats
impl Unpin for TextIndexStats
impl UnsafeUnpin for TextIndexStats
impl UnwindSafe for TextIndexStats
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