calamine

Enum Data

Source
pub enum Data {
    Int(i64),
    Float(f64),
    String(String),
    Bool(bool),
    DateTime(ExcelDateTime),
    DateTimeIso(String),
    DurationIso(String),
    Error(CellErrorType),
    Empty,
}
Expand description

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

Variants§

§

Int(i64)

Signed integer

§

Float(f64)

Float

§

String(String)

String

§

Bool(bool)

Boolean

§

DateTime(ExcelDateTime)

Date or Time

§

DateTimeIso(String)

Date, Time or DateTime in ISO 8601

§

DurationIso(String)

Duration in ISO 8601

§

Error(CellErrorType)

Error

§

Empty

Empty cell

Trait Implementations§

Source§

impl Clone for Data

Source§

fn clone(&self) -> Data

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl DataType for Data

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

Source§

fn is_empty(&self) -> bool

Assess if datatype is empty
Source§

fn is_int(&self) -> bool

Assess if datatype is a int
Source§

fn is_float(&self) -> bool

Assess if datatype is a float
Source§

fn is_bool(&self) -> bool

Assess if datatype is a bool
Source§

fn is_string(&self) -> bool

Assess if datatype is a string
Source§

fn is_error(&self) -> bool

Assess if datatype is a CellErrorType
Source§

fn get_int(&self) -> Option<i64>

Try getting int value
Source§

fn get_float(&self) -> Option<f64>

Try getting float value
Source§

fn get_bool(&self) -> Option<bool>

Try getting bool value
Source§

fn get_string(&self) -> Option<&str>

Try getting string value
Source§

fn get_error(&self) -> Option<&CellErrorType>

Try getting Error value
Source§

fn as_string(&self) -> Option<String>

Try converting data type into a string
Source§

fn as_i64(&self) -> Option<i64>

Try converting data type into an int
Source§

fn as_f64(&self) -> Option<f64>

Try converting data type into a float
Source§

impl Debug for Data

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Data

Source§

fn default() -> Data

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Data

Source§

fn deserialize<D>(deserializer: D) -> Result<Data, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Data

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'a> From<&'a str> for Data

Source§

fn from(v: &'a str) -> Self

Converts to this type from the input type.
Source§

impl From<()> for Data

Source§

fn from(_: ()) -> Self

Converts to this type from the input type.
Source§

impl From<CellErrorType> for Data

Source§

fn from(v: CellErrorType) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<DataRef<'a>> for Data

Source§

fn from(value: DataRef<'a>) -> Self

Converts to this type from the input type.
Source§

impl<T> From<Option<T>> for Data
where Data: From<T>,

Source§

fn from(v: Option<T>) -> Self

Converts to this type from the input type.
Source§

impl From<String> for Data

Source§

fn from(v: String) -> Self

Converts to this type from the input type.
Source§

impl From<bool> for Data

Source§

fn from(v: bool) -> Self

Converts to this type from the input type.
Source§

impl From<f64> for Data

Source§

fn from(v: f64) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for Data

Source§

fn from(v: i64) -> Self

Converts to this type from the input type.
Source§

impl PartialEq<&str> for Data

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<bool> for Data

Source§

fn eq(&self, other: &bool) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<f64> for Data

Source§

fn eq(&self, other: &f64) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<i64> for Data

Source§

fn eq(&self, other: &i64) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<str> for Data

Source§

fn eq(&self, other: &str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for Data

Source§

fn eq(&self, other: &Data) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> ToCellDeserializer<'a> for Data

Source§

type Deserializer = DataDeserializer<'a>

The deserializer.
Source§

fn to_cell_deserializer(&'a self, pos: (u32, u32)) -> DataDeserializer<'a>

Construct a CellType deserializer at the specified position.
Source§

fn is_empty(&self) -> bool

Assess if the cell is empty.
Source§

impl CellType for Data

Source§

impl StructuralPartialEq for Data

Auto Trait Implementations§

§

impl Freeze for Data

§

impl RefUnwindSafe for Data

§

impl Send for Data

§

impl Sync for Data

§

impl Unpin for Data

§

impl UnwindSafe for Data

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,