Struct vortex_array::flatbuffers::ArrayStatsArgs
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>>>,
pub uncompressed_size_in_bytes: Option<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>>>
§uncompressed_size_in_bytes: Option<u64>
Trait Implementations§
§impl<'a> Default for ArrayStatsArgs<'a>
impl<'a> Default for ArrayStatsArgs<'a>
§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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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