[][src]Enum nvimpam_lib::card::cell::Cell

pub enum Cell {
    Kw,
    Fixed(&'static str),
    Integer(u8),
    Float(u8),
    Blank(u8),
    Cont,
    Str(u8),
    Binary(u8),
    IntegerorBlank(u8),
}

All the basic elements that can occur on a valid line in a Pamcrash input file, aside from comments and header data.

Variants

A keyword

A fixed, non-keyword entry

An integer with a given maximum string-length

A float with a given maximum string-length

A given number of blanks

A continuation character &

A string of a given length

A sequence of 0 and 1 of a given length

An alternative of 2 cells

Trait Implementations

impl PartialEq<Cell> for Cell
[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 Cell
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Cell

impl Sync for Cell

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more