pub struct VectorSegmentStatistics {
pub row_count: u64,
pub null_count: u64,
pub active_count: u64,
pub deleted_count: u64,
pub deletion_ratio: f32,
pub norm_min: f32,
pub norm_max: f32,
pub min_values: Vec<ScalarValue>,
pub max_values: Vec<ScalarValue>,
pub created_at: u64,
}Expand description
ベクトルセグメント向けの統計情報。
Fields§
§row_count: u64全行数。
null_count: u64NULL 行数。
active_count: u64アクティブ(有効)行数。
deleted_count: u64論理削除行数。
deletion_ratio: f32削除率(0-1)。
norm_min: f32ベクトルノルムの最小値。
norm_max: f32ベクトルノルムの最大値。
min_values: Vec<ScalarValue>フィルタ列の最小値。
max_values: Vec<ScalarValue>フィルタ列の最大値。
created_at: u64作成時刻(epoch millis)。
Implementations§
Trait Implementations§
Source§impl Clone for VectorSegmentStatistics
impl Clone for VectorSegmentStatistics
Source§fn clone(&self) -> VectorSegmentStatistics
fn clone(&self) -> VectorSegmentStatistics
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 VectorSegmentStatistics
impl Debug for VectorSegmentStatistics
Source§impl<'de> Deserialize<'de> for VectorSegmentStatistics
impl<'de> Deserialize<'de> for VectorSegmentStatistics
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 VectorSegmentStatistics
impl PartialEq for VectorSegmentStatistics
Source§impl Serialize for VectorSegmentStatistics
impl Serialize for VectorSegmentStatistics
impl StructuralPartialEq for VectorSegmentStatistics
Auto Trait Implementations§
impl Freeze for VectorSegmentStatistics
impl RefUnwindSafe for VectorSegmentStatistics
impl Send for VectorSegmentStatistics
impl Sync for VectorSegmentStatistics
impl Unpin for VectorSegmentStatistics
impl UnwindSafe for VectorSegmentStatistics
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