pub struct SearchStats {
pub segments_scanned: u64,
pub segments_pruned: u64,
pub rows_scanned: u64,
pub rows_matched: u64,
}Expand description
検索統計。
Fields§
§segments_scanned: u64走査したセグメント数。
segments_pruned: u64プルーニングでスキップしたセグメント数。
rows_scanned: u64走査した行数(削除済み含む)。
rows_matched: u64スコア計算した行数。
Trait Implementations§
Source§impl Clone for SearchStats
impl Clone for SearchStats
Source§fn clone(&self) -> SearchStats
fn clone(&self) -> SearchStats
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 SearchStats
impl Debug for SearchStats
Source§impl Default for SearchStats
impl Default for SearchStats
Source§fn default() -> SearchStats
fn default() -> SearchStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchStats
impl<'de> Deserialize<'de> for SearchStats
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 SearchStats
impl PartialEq for SearchStats
Source§impl Serialize for SearchStats
impl Serialize for SearchStats
impl Eq for SearchStats
impl StructuralPartialEq for SearchStats
Auto Trait Implementations§
impl Freeze for SearchStats
impl RefUnwindSafe for SearchStats
impl Send for SearchStats
impl Sync for SearchStats
impl Unpin for SearchStats
impl UnwindSafe for SearchStats
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