Enum fits_rs::types::Value [] [src]

pub enum Value<'a> {
    CharacterString(&'a str),
    Logical(bool),
    Integer(i64),
    Real(f64),
    Complex((f64, f64)),
    Undefined,
}

The possible values of a KeywordRecord.

Variants

A string enclosed in single quotes '.

A logical constant signified by either an uppercase F or an uppercase T.

An optionally signed decimal integer.

Fixed format real floating point number.

Complex number represented by a real and imaginary component.

When a value is not present

Trait Implementations

impl<'a> Debug for Value<'a>
[src]

Formats the value using the given formatter.

impl<'a> PartialEq for Value<'a>
[src]

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

This method tests for !=.

impl<'a> Clone for Value<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more