pub struct ParquetStatistics {
    pub null_count: Count,
    pub distinct_count: Count,
    pub min_value: Box<dyn Array + 'static, Global>,
    pub max_value: Box<dyn Array + 'static, Global>,
}
Expand description

Arrow-deserialized parquet Statistics of a file

Fields

null_count: Count

number of nulls.

distinct_count: Count

number of dictinct values

min_value: Box<dyn Array + 'static, Global>

Minimum

max_value: Box<dyn Array + 'static, Global>

Maximum

Trait Implementations

Formats the value using the given formatter. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.