Enum nastran::datfile::Field [] [src]

pub enum Field<'a> {
    Blank,
    Int(i32),
    Float(f32),
    Double(f64),
    Continuation(&'a str),
    DoubleContinuation(&'a str),
    String(&'a str),
    DoubleString(&'a str),
}

Variants

Trait Implementations

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

[src]

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

[src]

This method tests for !=.

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

impl<'a> Display for Field<'a>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Field<'a>

impl<'a> Sync for Field<'a>