pub struct NumericSummary {
pub name: String,
pub dims: Vec<usize>,
pub dtype: NumericType,
pub matlab_class: Option<NumericType>,
pub has_imag: bool,
pub preview: Vec<f64>,
pub data: Option<Vec<f64>>,
pub truncated: bool,
pub capture_limit: Option<usize>,
}Fields§
§name: String§dims: Vec<usize>§dtype: NumericType§matlab_class: Option<NumericType>§has_imag: bool§preview: Vec<f64>§data: Option<Vec<f64>>§truncated: bool§capture_limit: Option<usize>Implementations§
Source§impl NumericSummary
impl NumericSummary
pub fn to_ndarray(&self) -> Option<ArrayD<f64>>
Trait Implementations§
Source§impl Clone for NumericSummary
impl Clone for NumericSummary
Source§fn clone(&self) -> NumericSummary
fn clone(&self) -> NumericSummary
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 NumericSummary
impl RefUnwindSafe for NumericSummary
impl Send for NumericSummary
impl Sync for NumericSummary
impl Unpin for NumericSummary
impl UnwindSafe for NumericSummary
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