pub trait Statistics: Send + Sync + Debug {
    fn as_any(&self) -> &dyn Any;
    fn physical_type(&self) -> &PhysicalType;
    fn null_count(&self) -> Option<i64>;
}
Expand description

A trait used to describe specific statistics. Each physical type has its own struct. Match the Statistics::physical_type to each type and downcast accordingly.

Required Methods

Trait Implementations

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

This method tests for !=.

Implementors