pub struct DictionaryInfo {
pub collection_id: CollectionId,
pub collection_name: String,
pub dictionary_entries: usize,
pub fields: Vec<DictionaryFieldInfo>,
}Expand description
Snapshot of collection dictionary statistics.
Fields§
§collection_id: CollectionIdCollection ID.
collection_name: StringCollection name.
dictionary_entries: usizeNumber of unique dictionary values.
fields: Vec<DictionaryFieldInfo>Per-field cardinality estimates.
Trait Implementations§
Source§impl Clone for DictionaryInfo
impl Clone for DictionaryInfo
Source§fn clone(&self) -> DictionaryInfo
fn clone(&self) -> DictionaryInfo
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 DictionaryInfo
impl Debug for DictionaryInfo
Source§impl PartialEq for DictionaryInfo
impl PartialEq for DictionaryInfo
impl Eq for DictionaryInfo
impl StructuralPartialEq for DictionaryInfo
Auto Trait Implementations§
impl Freeze for DictionaryInfo
impl RefUnwindSafe for DictionaryInfo
impl Send for DictionaryInfo
impl Sync for DictionaryInfo
impl Unpin for DictionaryInfo
impl UnsafeUnpin for DictionaryInfo
impl UnwindSafe for DictionaryInfo
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