pub enum TensorArray {
F32(ArrayD<f32>),
F64(ArrayD<f64>),
I8(ArrayD<i8>),
I16(ArrayD<i16>),
I32(ArrayD<i32>),
I64(ArrayD<i64>),
U8(ArrayD<u8>),
Bool(ArrayD<bool>),
}Variants§
F32(ArrayD<f32>)
F64(ArrayD<f64>)
I8(ArrayD<i8>)
I16(ArrayD<i16>)
I32(ArrayD<i32>)
I64(ArrayD<i64>)
U8(ArrayD<u8>)
Bool(ArrayD<bool>)
Trait Implementations§
Source§impl Clone for TensorArray
impl Clone for TensorArray
Source§fn clone(&self) -> TensorArray
fn clone(&self) -> TensorArray
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for TensorArray
impl RefUnwindSafe for TensorArray
impl Send for TensorArray
impl Sync for TensorArray
impl Unpin for TensorArray
impl UnsafeUnpin for TensorArray
impl UnwindSafe for TensorArray
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