pub struct VectorIndexStatus {
pub revision: VectorRevision,
pub partition_count: usize,
pub record_count: usize,
pub byte_count: usize,
}Expand description
Current logical size and published revision of an index.
Fields§
§revision: VectorRevision§partition_count: usize§record_count: usize§byte_count: usizeAccounted vector and caller metadata bytes in the current snapshot.
Trait Implementations§
Source§impl Clone for VectorIndexStatus
impl Clone for VectorIndexStatus
Source§fn clone(&self) -> VectorIndexStatus
fn clone(&self) -> VectorIndexStatus
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 VectorIndexStatus
impl Debug for VectorIndexStatus
Source§impl Default for VectorIndexStatus
impl Default for VectorIndexStatus
Source§fn default() -> VectorIndexStatus
fn default() -> VectorIndexStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VectorIndexStatus
impl<'de> Deserialize<'de> for VectorIndexStatus
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
impl Eq for VectorIndexStatus
Source§impl PartialEq for VectorIndexStatus
impl PartialEq for VectorIndexStatus
Source§impl Serialize for VectorIndexStatus
impl Serialize for VectorIndexStatus
impl StructuralPartialEq for VectorIndexStatus
Auto Trait Implementations§
impl Freeze for VectorIndexStatus
impl RefUnwindSafe for VectorIndexStatus
impl Send for VectorIndexStatus
impl Sync for VectorIndexStatus
impl Unpin for VectorIndexStatus
impl UnsafeUnpin for VectorIndexStatus
impl UnwindSafe for VectorIndexStatus
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