parquet::column::writer

Struct ColumnMetrics

Source
struct ColumnMetrics<T: Default> {
Show 14 fields total_bytes_written: u64, total_rows_written: u64, total_uncompressed_size: u64, total_compressed_size: u64, total_num_values: u64, dictionary_page_offset: Option<u64>, data_page_offset: Option<u64>, min_column_value: Option<T>, max_column_value: Option<T>, num_column_nulls: u64, column_distinct_count: Option<u64>, variable_length_bytes: Option<i64>, repetition_level_histogram: Option<LevelHistogram>, definition_level_histogram: Option<LevelHistogram>,
}

Fields§

§total_bytes_written: u64§total_rows_written: u64§total_uncompressed_size: u64§total_compressed_size: u64§total_num_values: u64§dictionary_page_offset: Option<u64>§data_page_offset: Option<u64>§min_column_value: Option<T>§max_column_value: Option<T>§num_column_nulls: u64§column_distinct_count: Option<u64>§variable_length_bytes: Option<i64>§repetition_level_histogram: Option<LevelHistogram>§definition_level_histogram: Option<LevelHistogram>

Implementations§

Source§

impl<T: Default> ColumnMetrics<T>

Source

fn new() -> Self

Source

fn with_repetition_level_histogram(self, max_level: i16) -> Self

Initialize the repetition level histogram

Source

fn with_definition_level_histogram(self, max_level: i16) -> Self

Initialize the definition level histogram

Source

fn update_histogram( chunk_histogram: &mut Option<LevelHistogram>, page_histogram: &Option<LevelHistogram>, )

Sum page_histogram into chunk_histogram

Source

fn update_from_page_metrics(&mut self, page_metrics: &PageMetrics)

Sum the provided PageMetrics histograms into the chunk histograms. Does nothing if page histograms are not initialized.

Source

fn update_variable_length_bytes(&mut self, variable_length_bytes: Option<i64>)

Sum the provided page variable_length_bytes into the chunk variable_length_bytes

Trait Implementations§

Source§

impl<T: Default + Default> Default for ColumnMetrics<T>

Source§

fn default() -> ColumnMetrics<T>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T> Freeze for ColumnMetrics<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for ColumnMetrics<T>
where T: RefUnwindSafe,

§

impl<T> Send for ColumnMetrics<T>
where T: Send,

§

impl<T> Sync for ColumnMetrics<T>
where T: Sync,

§

impl<T> Unpin for ColumnMetrics<T>
where T: Unpin,

§

impl<T> UnwindSafe for ColumnMetrics<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T