Enum fitrs::HeaderValue
[−]
[src]
pub enum HeaderValue {
CharacterString(String),
Logical(bool),
IntegerNumber(i32),
RealFloatingNumber(f64),
ComplexIntegerNumber(i64, i64),
ComplexFloatingNumber(f64, f64),
}Value stored inside the Hdu header.
As defined in FITS standard 5.2.
Variants
CharacterString(String)Logical(bool)IntegerNumber(i32)RealFloatingNumber(f64)ComplexIntegerNumber(i64, i64)ComplexFloatingNumber(f64, f64)
Trait Implementations
impl PartialEq for HeaderValue[src]
impl PartialEq for HeaderValuefn eq(&self, __arg_0: &HeaderValue) -> bool[src]
fn eq(&self, __arg_0: &HeaderValue) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &HeaderValue) -> bool[src]
fn ne(&self, __arg_0: &HeaderValue) -> boolThis method tests for !=.
impl Debug for HeaderValue[src]
impl Debug for HeaderValueAuto Trait Implementations
impl Send for HeaderValue
impl Send for HeaderValueimpl Sync for HeaderValue
impl Sync for HeaderValue