Enum rubbl_fits::HduKind[][src]

pub enum HduKind {
    PrimaryArray,
    PrimaryRandomGroups,
    PrimaryNoData,
    ImageExtension,
    AsciiTableExtension,
    BinaryTableExtension,
    OtherExtension(String),
}

Different kinds of HDUs known to this module.

Variants

PrimaryArray

This HDU is the primary HDU, and it contains an N-dimensional array.

PrimaryRandomGroups

This HDU is the primary HDU, and it contains a “random groups” binary table. This format is superseded by the BINTABLE extension type.

PrimaryNoData

This HDU is the primary HDU, and the array it specifies has zero total size.

ImageExtension

This HDU contains an N-dimensional data array.

AsciiTableExtension

This HDU contains a textual data table.

BinaryTableExtension

This HDU contains a binary data table.

OtherExtension(String)

This HDU contains data of unrecognized format. The data are still accessible as an arbitrary binary stream, because the FITS format includes enough information to deduce the overall data structure, but beyond that you’re on your own.

Trait Implementations

impl Clone for HduKind[src]

impl Debug for HduKind[src]

impl Eq for HduKind[src]

impl PartialEq<HduKind> for HduKind[src]

impl StructuralEq for HduKind[src]

impl StructuralPartialEq for HduKind[src]

Auto Trait Implementations

impl RefUnwindSafe for HduKind

impl Send for HduKind

impl Sync for HduKind

impl Unpin for HduKind

impl UnwindSafe for HduKind

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.