pub enum DTypeArray {
}
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>)
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