Enum peroxide::structure::dataframe::DTypeArray
source · pub enum DTypeArray {
}
Expand description
Vector with DType
Variants§
USIZE(Vec<usize>)
U8(Vec<u8>)
U16(Vec<u16>)
U32(Vec<u32>)
U64(Vec<u64>)
ISIZE(Vec<isize>)
I8(Vec<i8>)
I16(Vec<i16>)
I32(Vec<i32>)
I64(Vec<i64>)
F32(Vec<f32>)
F64(Vec<f64>)
Bool(Vec<bool>)
Str(Vec<String>)
Char(Vec<char>)
Trait Implementations§
source§impl Clone for DTypeArray
impl Clone for DTypeArray
source§fn clone(&self) -> DTypeArray
fn clone(&self) -> DTypeArray
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 DTypeArray
impl Debug for DTypeArray
source§impl Display for DTypeArray
impl Display for DTypeArray
source§impl PartialEq for DTypeArray
impl PartialEq for DTypeArray
impl StructuralPartialEq for DTypeArray
Auto Trait Implementations§
impl Freeze for DTypeArray
impl RefUnwindSafe for DTypeArray
impl Send for DTypeArray
impl Sync for DTypeArray
impl Unpin for DTypeArray
impl UnwindSafe for DTypeArray
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