pub struct IndexInfo {
pub name: String,
pub index_type: IndexType,
pub entry_count: usize,
}Expand description
Information about an index.
Fields§
§name: StringThe name of the index.
index_type: IndexTypeThe type of the index.
entry_count: usizeThe number of entries in the index.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexInfo
impl RefUnwindSafe for IndexInfo
impl Send for IndexInfo
impl Sync for IndexInfo
impl Unpin for IndexInfo
impl UnwindSafe for IndexInfo
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