pub struct DataArray {
pub name: String,
pub format: String,
pub samples: Vec<Complex<f64>>,
}Expand description
A named, formatted, data array
Consistency of the format with the variable samples is not
guaranteed and should be enforced by users of this code.
Fields§
§name: String§format: String§samples: Vec<Complex<f64>>Implementations§
Trait Implementations§
impl StructuralPartialEq for DataArray
Auto Trait Implementations§
impl Freeze for DataArray
impl RefUnwindSafe for DataArray
impl Send for DataArray
impl Sync for DataArray
impl Unpin for DataArray
impl UnwindSafe for DataArray
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