pub struct ArrayData { /* private fields */ }
Expand description
Owned Array
with serialized metadata, backed by heap-allocated memory.
Implementations§
Source§impl ArrayData
impl ArrayData
pub fn try_new( encoding: EncodingRef, dtype: DType, len: usize, metadata: Arc<dyn ArrayMetadata>, buffer: Option<Buffer>, children: Arc<[Array]>, statistics: StatsSet, ) -> VortexResult<Self>
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) -> &Arc<dyn ArrayMetadata>
pub fn buffer(&self) -> Option<&Buffer>
pub fn into_buffer(self) -> Option<Buffer>
pub fn child( &self, index: usize, dtype: &DType, len: usize, ) -> VortexResult<&Array>
pub fn nchildren(&self) -> usize
pub fn children(&self) -> &[Array]
pub fn statistics(&self) -> &dyn Statistics
Trait Implementations§
Source§impl Statistics for ArrayData
impl Statistics for ArrayData
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
fn set(&self, stat: Stat, value: Scalar)
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
Auto Trait Implementations§
impl !Freeze for ArrayData
impl !RefUnwindSafe for ArrayData
impl Send for ArrayData
impl Sync for ArrayData
impl Unpin for ArrayData
impl !UnwindSafe for ArrayData
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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