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