pub struct PageIndex<T> {
pub min: Option<T>,
pub max: Option<T>,
pub null_count: Option<i64>,
}
Expand description
The index of a page, containing the min and max values of the page.
Fields§
§min: Option<T>
The minimum value in the page. It is None when all values are null
max: Option<T>
The maximum value in the page. It is None when all values are null
null_count: Option<i64>
The number of null values in the page
Trait Implementations§
source§impl<T: PartialEq> PartialEq for PageIndex<T>
impl<T: PartialEq> PartialEq for PageIndex<T>
impl<T: Eq> Eq for PageIndex<T>
impl<T> StructuralPartialEq for PageIndex<T>
Auto Trait Implementations§
impl<T> Freeze for PageIndex<T>where
T: Freeze,
impl<T> RefUnwindSafe for PageIndex<T>where
T: RefUnwindSafe,
impl<T> Send for PageIndex<T>where
T: Send,
impl<T> Sync for PageIndex<T>where
T: Sync,
impl<T> Unpin for PageIndex<T>where
T: Unpin,
impl<T> UnwindSafe for PageIndex<T>where
T: UnwindSafe,
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