Trait fitsio::ReadsKey [] [src]

pub trait ReadsKey {
    fn read_key(f: &FitsFile, name: &str) -> Result<Self> where Self: Sized;
}

Trait applied to types which can be read from a FITS header

This is currently:

  • i32
  • i64
  • f32
  • f64
  • String

Required Methods

Implementors