Enum calamine::CellErrorType [] [src]

pub enum CellErrorType {
    Div0,
    NA,
    Name,
    Null,
    Num,
    Ref,
    Value,
    GettingData,
}

An enum to represent all different errors that can appear as a value in a worksheet cell

Variants

Division by 0 error

Unavailable value error

Invalid name error

Null value error

Number error

Invalid cell reference error

Value error

Getting data

Trait Implementations

impl Debug for CellErrorType
[src]

Formats the value using the given formatter.

impl Clone for CellErrorType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CellErrorType
[src]

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

This method tests for !=.

impl FromStr for CellErrorType
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Display for CellErrorType
[src]

Formats the value using the given formatter. Read more