pub enum BasicTypedArray {
}Expand description
Enum representing the different data types that a BasicSeries can store.
Variants§
Usize(Vec<usize>)
A vector of usize
U8(Vec<u8>)
A vector of u8
U16(Vec<u16>)
A vector of u16
U32(Vec<u32>)
A vector of u32
U64(Vec<u64>)
A vector of u64
Isize(Vec<isize>)
A vector of isize
I8(Vec<i8>)
A vector of i8
I16(Vec<i16>)
A vector of i16
I32(Vec<i32>)
A vector of i32
I64(Vec<i64>)
A vector of i64
F32(Vec<f32>)
A vector of f32
F64(Vec<f64>)
A vector of f64
Bool(Vec<bool>)
A vector of bool
String(Vec<String>)
A vector of String
Char(Vec<char>)
A vector of char
Implementations§
Trait Implementations§
Source§impl Debug for BasicTypedArray
impl Debug for BasicTypedArray
Source§impl PartialEq for BasicTypedArray
impl PartialEq for BasicTypedArray
impl StructuralPartialEq for BasicTypedArray
Auto Trait Implementations§
impl Freeze for BasicTypedArray
impl RefUnwindSafe for BasicTypedArray
impl Send for BasicTypedArray
impl Sync for BasicTypedArray
impl Unpin for BasicTypedArray
impl UnwindSafe for BasicTypedArray
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