Struct fitrs::FitsDataArray[][src]

pub struct FitsDataArray<T> {
    pub shape: Vec<usize>,
    pub data: Vec<T>,
}

Actual array data inside the Hdu

Fields

Shape of array.

Example: A 2D image of width w and height h will be stored here as [w, h].

Raw data stored in the Hdu.

Trait Implementations

impl<T: Debug> Debug for FitsDataArray<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for FitsDataArray<T> where
    T: Send

impl<T> Sync for FitsDataArray<T> where
    T: Sync