Struct hfss_fld::fld_file_data_structs::FileData[][src]

pub struct FileData {
    pub file_name: String,
    pub geo_points: Vec<[f64; 3]>,
    pub fld_points: Vec<Vec<f64>>,
    pub dimensionality: DataDimensionality,
    pub coordinates: DataCoordinates,
    pub num_points: usize,
}

Fields

file_name: Stringgeo_points: Vec<[f64; 3]>fld_points: Vec<Vec<f64>>dimensionality: DataDimensionalitycoordinates: DataCoordinatesnum_points: usize

Implementations

impl FileData[src]

pub fn load_file(
    file_path: String,
    expected_field_data_size: usize
) -> Result<Self, Error>
[src]

Trait Implementations

impl Debug for FileData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.