pub struct FtsIndexStat {
pub table_name: String,
pub field: String,
pub analyzer: String,
pub posting_count: u64,
pub doc_length_count: u64,
pub indexed_doc_count: u64,
pub term_count: u64,
pub total_field_length: u64,
}Fields§
§table_name: String§field: String§analyzer: String§posting_count: u64§doc_length_count: u64§indexed_doc_count: u64§term_count: u64§total_field_length: u64Trait Implementations§
Source§impl Clone for FtsIndexStat
impl Clone for FtsIndexStat
Source§fn clone(&self) -> FtsIndexStat
fn clone(&self) -> FtsIndexStat
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 FtsIndexStat
impl Debug for FtsIndexStat
impl Eq for FtsIndexStat
Source§impl PartialEq for FtsIndexStat
impl PartialEq for FtsIndexStat
impl StructuralPartialEq for FtsIndexStat
Auto Trait Implementations§
impl Freeze for FtsIndexStat
impl RefUnwindSafe for FtsIndexStat
impl Send for FtsIndexStat
impl Sync for FtsIndexStat
impl Unpin for FtsIndexStat
impl UnsafeUnpin for FtsIndexStat
impl UnwindSafe for FtsIndexStat
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