[][src]Struct umya_spreadsheet::structs::cell::Cell

pub struct Cell { /* fields omitted */ }

Implementations

impl Cell[src]

pub const TYPE_STRING2: &'static str[src]

pub const TYPE_STRING: &'static str[src]

pub const TYPE_FORMULA: &'static str[src]

pub const TYPE_NUMERIC: &'static str[src]

pub const TYPE_BOOL: &'static str[src]

pub const TYPE_NULL: &'static str[src]

pub const TYPE_INLINE: &'static str[src]

pub const TYPE_ERROR: &'static str[src]

pub fn get_value(&self) -> &String[src]

pub fn get_rich_text(&self) -> &Option<RichText>[src]

pub fn set_value<S: Into<String>>(&mut self, value: S) -> Result<(), &str>[src]

pub fn get_data_type(&self) -> &str[src]

pub fn set_value_and_data_type<S: Into<String>>(
    &mut self,
    value: S,
    data_type: S
) -> Result<(), &'static str>
[src]

pub fn set_data_type<S: Into<String>>(
    &mut self,
    value: S
) -> Result<(), &'static str>
[src]

pub fn is_formula(&self) -> bool[src]

pub fn get_formula_attributes(&self) -> &String[src]

Trait Implementations

impl Debug for Cell[src]

impl Default for Cell[src]

Auto Trait Implementations

impl RefUnwindSafe for Cell

impl Send for Cell

impl Sync for Cell

impl Unpin for Cell

impl UnwindSafe for Cell

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.