pub struct FITSFile;Expand description
This offers a method to open a file and provide a HDU list iterator over it
The opening process handle externally gzipped files
The downside is that the GzReader does not impl Seek, even if the original file is not gzipped Therefore, seek method will not be used to get to the next HDU after parsing an HDU If you know that your file is not externally gzipped, then you can directly use the Fits::from_reader method and providing it a Seekable reader
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FITSFile
impl RefUnwindSafe for FITSFile
impl Send for FITSFile
impl Sync for FITSFile
impl Unpin for FITSFile
impl UnwindSafe for FITSFile
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