pub struct CompositeBuildStats {
pub diff_entries: usize,
pub inserted_records: usize,
pub vector_updated_records: usize,
pub value_only_records: usize,
pub deleted_records: usize,
pub delta_records: usize,
pub shadow_records: usize,
pub owned_bytes_peak: usize,
pub encoded_output_bytes: usize,
pub distance_evaluations: usize,
}Fields§
§diff_entries: usize§inserted_records: usize§vector_updated_records: usize§value_only_records: usize§deleted_records: usize§delta_records: usize§shadow_records: usize§owned_bytes_peak: usize§encoded_output_bytes: usize§distance_evaluations: usizeTrait Implementations§
Source§impl Clone for CompositeBuildStats
impl Clone for CompositeBuildStats
Source§fn clone(&self) -> CompositeBuildStats
fn clone(&self) -> CompositeBuildStats
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 CompositeBuildStats
impl Debug for CompositeBuildStats
Source§impl Default for CompositeBuildStats
impl Default for CompositeBuildStats
Source§fn default() -> CompositeBuildStats
fn default() -> CompositeBuildStats
Returns the “default value” for a type. Read more
impl Eq for CompositeBuildStats
Source§impl PartialEq for CompositeBuildStats
impl PartialEq for CompositeBuildStats
impl StructuralPartialEq for CompositeBuildStats
Auto Trait Implementations§
impl Freeze for CompositeBuildStats
impl RefUnwindSafe for CompositeBuildStats
impl Send for CompositeBuildStats
impl Sync for CompositeBuildStats
impl Unpin for CompositeBuildStats
impl UnsafeUnpin for CompositeBuildStats
impl UnwindSafe for CompositeBuildStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more