pub struct ArrayData { /* private fields */ }
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) -> Option<&Array>
pub fn nchildren(&self) -> usize
pub fn children(&self) -> &[Array]
pub fn statistics(&self) -> &dyn Statistics
Trait Implementations§
source§impl From<NullBuffer> for ArrayData
impl From<NullBuffer> for ArrayData
source§fn from(value: NullBuffer) -> Self
fn from(value: NullBuffer) -> Self
Converts to this type from the input type.
source§impl<O> From<OffsetBuffer<O>> for ArrayDatawhere
O: NativePType + OffsetSizeTrait,
impl<O> From<OffsetBuffer<O>> for ArrayDatawhere
O: NativePType + OffsetSizeTrait,
source§fn from(value: OffsetBuffer<O>) -> Self
fn from(value: OffsetBuffer<O>) -> Self
Converts to this type from the input type.
source§impl<T> From<ScalarBuffer<T>> for ArrayDatawhere
T: ArrowNativeType + NativePType,
impl<T> From<ScalarBuffer<T>> for ArrayDatawhere
T: ArrowNativeType + NativePType,
source§fn from(value: ScalarBuffer<T>) -> Self
fn from(value: ScalarBuffer<T>) -> Self
Converts to this type from the input type.
source§impl From<TemporalArray> for ArrayData
impl From<TemporalArray> for ArrayData
source§fn from(value: TemporalArray) -> Self
fn from(value: TemporalArray) -> Self
Converts to this type from the input type.
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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