pub struct TypedArray<D: ArrayDef> { /* private fields */ }
Expand description
Container for an array with all the associated implementation type information (encoding reference and ID, actual array type, metadata type).
Implementations§
Source§impl<D: ArrayDef> TypedArray<D>
impl<D: ArrayDef> TypedArray<D>
Trait Implementations§
Source§impl<D: Clone + ArrayDef> Clone for TypedArray<D>
impl<D: Clone + ArrayDef> Clone for TypedArray<D>
Source§fn clone(&self) -> TypedArray<D>
fn clone(&self) -> TypedArray<D>
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 From<TypedArray<Bool>> for BoolArray
impl From<TypedArray<Bool>> for BoolArray
Source§fn from(typed: TypedArray<Bool>) -> Self
fn from(typed: TypedArray<Bool>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Chunked>> for ChunkedArray
impl From<TypedArray<Chunked>> for ChunkedArray
Source§fn from(typed: TypedArray<Chunked>) -> Self
fn from(typed: TypedArray<Chunked>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Constant>> for ConstantArray
impl From<TypedArray<Constant>> for ConstantArray
Source§fn from(typed: TypedArray<Constant>) -> Self
fn from(typed: TypedArray<Constant>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Extension>> for ExtensionArray
impl From<TypedArray<Extension>> for ExtensionArray
Source§fn from(typed: TypedArray<Extension>) -> Self
fn from(typed: TypedArray<Extension>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Null>> for NullArray
impl From<TypedArray<Null>> for NullArray
Source§fn from(typed: TypedArray<Null>) -> Self
fn from(typed: TypedArray<Null>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Primitive>> for PrimitiveArray
impl From<TypedArray<Primitive>> for PrimitiveArray
Source§fn from(typed: TypedArray<Primitive>) -> Self
fn from(typed: TypedArray<Primitive>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Sparse>> for SparseArray
impl From<TypedArray<Sparse>> for SparseArray
Source§fn from(typed: TypedArray<Sparse>) -> Self
fn from(typed: TypedArray<Sparse>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<Struct>> for StructArray
impl From<TypedArray<Struct>> for StructArray
Source§fn from(typed: TypedArray<Struct>) -> Self
fn from(typed: TypedArray<Struct>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<VarBin>> for VarBinArray
impl From<TypedArray<VarBin>> for VarBinArray
Source§fn from(typed: TypedArray<VarBin>) -> Self
fn from(typed: TypedArray<VarBin>) -> Self
Converts to this type from the input type.
Source§impl From<TypedArray<VarBinView>> for VarBinViewArray
impl From<TypedArray<VarBinView>> for VarBinViewArray
Source§fn from(typed: TypedArray<VarBinView>) -> Self
fn from(typed: TypedArray<VarBinView>) -> Self
Converts to this type from the input type.
Source§impl<D: ArrayDef> IntoArrayData for TypedArray<D>
impl<D: ArrayDef> IntoArrayData for TypedArray<D>
fn into_array(self) -> ArrayData
Source§impl<D: ArrayDef> ToArrayData for TypedArray<D>
impl<D: ArrayDef> ToArrayData for TypedArray<D>
Auto Trait Implementations§
impl<D> !Freeze for TypedArray<D>
impl<D> !RefUnwindSafe for TypedArray<D>
impl<D> Send for TypedArray<D>
impl<D> Sync for TypedArray<D>
impl<D> Unpin for TypedArray<D>
impl<D> !UnwindSafe for TypedArray<D>
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