Struct vortex::TypedArray
source · pub struct TypedArray<D: ArrayDef> { /* private fields */ }
Implementations§
source§impl<D: ArrayDef> TypedArray<D>
impl<D: ArrayDef> TypedArray<D>
Trait Implementations§
source§impl<D: ArrayDef> AsArray for TypedArray<D>
impl<D: ArrayDef> AsArray for TypedArray<D>
fn as_array_ref(&self) -> &Array
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> IntoArray for TypedArray<D>
impl<D: ArrayDef> IntoArray for TypedArray<D>
fn into_array(self) -> Array
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> ArrayEncodingRef for Twhere
T: AsArray,
impl<T> ArrayEncodingRef for Twhere
T: AsArray,
fn encoding(&self) -> &'static dyn ArrayEncoding
source§impl<T> ArrayStatistics for Twhere
T: AsArray,
impl<T> ArrayStatistics for Twhere
T: AsArray,
fn statistics(&self) -> &dyn Statistics
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