pub struct ArrayStatsArgs<'a> {
    pub min: Option<WIPOffset<ScalarValue<'a>>>,
    pub max: Option<WIPOffset<ScalarValue<'a>>>,
    pub is_sorted: Option<bool>,
    pub is_strict_sorted: Option<bool>,
    pub is_constant: Option<bool>,
    pub run_count: Option<u64>,
    pub true_count: Option<u64>,
    pub null_count: Option<u64>,
    pub bit_width_freq: Option<WIPOffset<Vector<'a, u64>>>,
    pub trailing_zero_freq: Option<WIPOffset<Vector<'a, u64>>>,
}Fields§
§min: Option<WIPOffset<ScalarValue<'a>>>§max: Option<WIPOffset<ScalarValue<'a>>>§is_sorted: Option<bool>§is_strict_sorted: Option<bool>§is_constant: Option<bool>§run_count: Option<u64>§true_count: Option<u64>§null_count: Option<u64>§bit_width_freq: Option<WIPOffset<Vector<'a, u64>>>§trailing_zero_freq: Option<WIPOffset<Vector<'a, u64>>>Trait Implementations§
Source§impl<'a> Default for ArrayStatsArgs<'a>
 
impl<'a> Default for ArrayStatsArgs<'a>
Source§fn default() -> ArrayStatsArgs<'a>
 
fn default() -> ArrayStatsArgs<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ArrayStatsArgs<'a>
impl<'a> RefUnwindSafe for ArrayStatsArgs<'a>
impl<'a> Send for ArrayStatsArgs<'a>
impl<'a> Sync for ArrayStatsArgs<'a>
impl<'a> Unpin for ArrayStatsArgs<'a>
impl<'a> UnwindSafe for ArrayStatsArgs<'a>
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> 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