pub struct IdxInfo {
pub name: Vec<u8>,
pub prefix: Vec<u8>,
pub kind: String,
pub state: String,
pub entries: u64,
pub bytes: u64,
}Expand description
One declared index, as reported by IDX.LIST.
Fields§
§name: Vec<u8>Index name.
prefix: Vec<u8>Key prefix the index covers.
kind: StringKind tag (range / unique / text / ann / agg).
state: StringBuild state (ready / building).
entries: u64Total indexed entries across shards.
bytes: u64Total index bytes across shards.
Trait Implementations§
impl Eq for IdxInfo
impl StructuralPartialEq for IdxInfo
Auto Trait Implementations§
impl Freeze for IdxInfo
impl RefUnwindSafe for IdxInfo
impl Send for IdxInfo
impl Sync for IdxInfo
impl Unpin for IdxInfo
impl UnsafeUnpin for IdxInfo
impl UnwindSafe for IdxInfo
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