Trait fitrs::FitsDataType

source ·
pub trait FitsDataType: Sized {
    fn new_fits_array(shape: &[usize], data: Vec<Self>) -> FitsData;
    fn bitpix() -> i32;
}
Expand description

A type that can be stored in a FITS data array implements this trait.

Required Methods

Implementations on Foreign Types

Implementors