Enum fitrs::HeaderValue [] [src]

pub enum HeaderValue {
    CharacterString(String),
    Logical(bool),
    IntegerNumber(i32),
    RealFloatingNumber(f64),
    ComplexIntegerNumber(i64i64),
    ComplexFloatingNumber(f64f64),
}
[]

Value stored inside the Hdu header.

As defined in FITS standard 5.2.

Variants

Trait Implementations

impl PartialEq for HeaderValue
[src]
[+]

[]

This method tests for self and other values to be equal, and is used by ==. Read more

[]

This method tests for !=.

impl Debug for HeaderValue
[src]
[+]

[]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for HeaderValue

impl Sync for HeaderValue