Struct vortex_array::flatbuffers::ArrayStats

pub struct ArrayStats<'a> {
    pub _tab: Table<'a>,
}

Fields§

§_tab: Table<'a>

Implementations§

§

impl<'a> ArrayStats<'a>

pub const VT_MIN: u16 = 4u16

pub const VT_MAX: u16 = 6u16

pub const VT_IS_SORTED: u16 = 8u16

pub const VT_IS_STRICT_SORTED: u16 = 10u16

pub const VT_IS_CONSTANT: u16 = 12u16

pub const VT_RUN_COUNT: u16 = 14u16

pub const VT_TRUE_COUNT: u16 = 16u16

pub const VT_NULL_COUNT: u16 = 18u16

pub const VT_BIT_WIDTH_FREQ: u16 = 20u16

pub const VT_TRAILING_ZERO_FREQ: u16 = 22u16

pub const VT_UNCOMPRESSED_SIZE_IN_BYTES: u16 = 24u16

pub unsafe fn init_from_table(table: Table<'a>) -> ArrayStats<'a>

pub fn create<'bldr, 'args, 'mut_bldr, A>( _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr, A>, args: &'args ArrayStatsArgs<'args>, ) -> WIPOffset<ArrayStats<'bldr>>
where 'bldr: 'args, 'args: 'mut_bldr, A: Allocator + 'bldr,

pub fn min(&self) -> Option<ScalarValue<'a>>

pub fn max(&self) -> Option<ScalarValue<'a>>

pub fn is_sorted(&self) -> Option<bool>

pub fn is_strict_sorted(&self) -> Option<bool>

pub fn is_constant(&self) -> Option<bool>

pub fn run_count(&self) -> Option<u64>

pub fn true_count(&self) -> Option<u64>

pub fn null_count(&self) -> Option<u64>

pub fn bit_width_freq(&self) -> Option<Vector<'a, u64>>

pub fn trailing_zero_freq(&self) -> Option<Vector<'a, u64>>

pub fn uncompressed_size_in_bytes(&self) -> Option<u64>

Trait Implementations§

§

impl<'a> Clone for ArrayStats<'a>

§

fn clone(&self) -> ArrayStats<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for ArrayStats<'_>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'a> Follow<'a> for ArrayStats<'a>

§

type Inner = ArrayStats<'a>

§

unsafe fn follow( buf: &'a [u8], loc: usize, ) -> <ArrayStats<'a> as Follow<'a>>::Inner

Safety Read more
§

impl<'a> PartialEq for ArrayStats<'a>

§

fn eq(&self, other: &ArrayStats<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Verifiable for ArrayStats<'_>

§

fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize, ) -> Result<(), InvalidFlatbuffer>

Runs the verifier for this type, assuming its at position pos in the verifier’s buffer. Should not need to be called directly.
§

impl<'a> Copy for ArrayStats<'a>

§

impl<'a> StructuralPartialEq for ArrayStats<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ArrayStats<'a>

§

impl<'a> RefUnwindSafe for ArrayStats<'a>

§

impl<'a> Send for ArrayStats<'a>

§

impl<'a> Sync for ArrayStats<'a>

§

impl<'a> Unpin for ArrayStats<'a>

§

impl<'a> UnwindSafe for ArrayStats<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> Ungil for T
where T: Send,