Enum office::DataType [] [src]

pub enum DataType {
    Int(i64),
    Float(f64),
    String(String),
    Bool(bool),
    Error(CellErrorType),
    Empty,
}

An enum to represent all different excel data types that can appear as a value in a worksheet cell

Variants

Unsigned integer

Float

String

Boolean

Error

Empty cell

Trait Implementations

impl Debug for DataType
[src]

Formats the value using the given formatter.

impl Clone for DataType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DataType
[src]

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

This method tests for !=.