pub enum NumericData {
Int8 {
real: Vec<i8>,
imag: Option<Vec<i8>>,
},
UInt8 {
real: Vec<u8>,
imag: Option<Vec<u8>>,
},
Int16 {
real: Vec<i16>,
imag: Option<Vec<i16>>,
},
UInt16 {
real: Vec<u16>,
imag: Option<Vec<u16>>,
},
Int32 {
real: Vec<i32>,
imag: Option<Vec<i32>>,
},
UInt32 {
real: Vec<u32>,
imag: Option<Vec<u32>>,
},
Int64 {
real: Vec<i64>,
imag: Option<Vec<i64>>,
},
UInt64 {
real: Vec<u64>,
imag: Option<Vec<u64>>,
},
Single {
real: Vec<f32>,
imag: Option<Vec<f32>>,
},
Double {
real: Vec<f64>,
imag: Option<Vec<f64>>,
},
}
Variants§
Trait Implementations§
Source§impl Clone for NumericData
impl Clone for NumericData
Source§fn clone(&self) -> NumericData
fn clone(&self) -> NumericData
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 NumericData
impl RefUnwindSafe for NumericData
impl Send for NumericData
impl Sync for NumericData
impl Unpin for NumericData
impl UnwindSafe for NumericData
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