pub struct ViewedArrayData { /* private fields */ }
Expand description
Zero-copy view over flatbuffer-encoded array data, created without eager serialization.
Implementations§
Source§impl ViewedArrayData
impl ViewedArrayData
pub fn try_new<F>( ctx: Arc<Context>, dtype: DType, len: usize, flatbuffer: Buffer, flatbuffer_init: F, buffers: Vec<Buffer>, ) -> VortexResult<Self>
pub fn flatbuffer(&self) -> Array<'_>
pub fn encoding(&self) -> EncodingRef
pub fn dtype(&self) -> &DType
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn metadata(&self) -> Option<&[u8]>
pub fn child(&self, idx: usize, dtype: &DType, len: usize) -> VortexResult<Self>
pub fn nchildren(&self) -> usize
pub fn children(&self) -> Vec<ArrayData>
Sourcepub fn has_buffer(&self) -> bool
pub fn has_buffer(&self) -> bool
Whether the current Array makes use of a buffer
pub fn buffer(&self) -> Option<&Buffer>
pub fn statistics(&self) -> &dyn Statistics
Trait Implementations§
Source§impl Clone for ViewedArrayData
impl Clone for ViewedArrayData
Source§fn clone(&self) -> ViewedArrayData
fn clone(&self) -> ViewedArrayData
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ViewedArrayData
impl Debug for ViewedArrayData
Source§impl IntoArrayData for ViewedArrayData
impl IntoArrayData for ViewedArrayData
fn into_array(self) -> ArrayData
Source§impl Statistics for ViewedArrayData
impl Statistics for ViewedArrayData
Source§fn to_set(&self) -> StatsSet
fn to_set(&self) -> StatsSet
NB: part of the contract for to_set is that it does not do any expensive computation. In other implementations, this means returning the underlying stats map, but for the flatbuffer implemetation, we have ‘precalculated’ stats in the flatbuffer itself, so we need to alllocate a stats map and populate it with those fields.
Source§fn set(&self, _stat: Stat, _value: Scalar)
fn set(&self, _stat: Stat, _value: Scalar)
We want to avoid any sort of allocation on instantiation of the ArrayView, so we do not allocate a stats_set to cache values.
Source§fn get(&self, stat: Stat) -> Option<Scalar>
fn get(&self, stat: Stat) -> Option<Scalar>
Returns the value of the statistic only if it’s present
Source§fn compute(&self, stat: Stat) -> Option<Scalar>
fn compute(&self, stat: Stat) -> Option<Scalar>
Computes the value of the stat if it’s not present
Source§fn compute_all(&self, stats: &[Stat]) -> VortexResult<StatsSet>
fn compute_all(&self, stats: &[Stat]) -> VortexResult<StatsSet>
Compute all of the requested statistics (if not already present)
Returns a StatsSet with the requested stats and any additional available stats
Source§impl ToArrayData for ViewedArrayData
impl ToArrayData for ViewedArrayData
Auto Trait Implementations§
impl !Freeze for ViewedArrayData
impl !RefUnwindSafe for ViewedArrayData
impl Send for ViewedArrayData
impl Sync for ViewedArrayData
impl Unpin for ViewedArrayData
impl !UnwindSafe for ViewedArrayData
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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