pub enum CellRawValue {
String(Box<str>),
RichText(RichText),
Lazy(Box<str>),
Numeric(f64),
Bool(bool),
Error(CellErrorType),
Empty,
}Variants§
String(Box<str>)
RichText(RichText)
Lazy(Box<str>)
Numeric(f64)
Bool(bool)
Error(CellErrorType)
Empty
Implementations§
Trait Implementations§
Source§impl Clone for CellRawValue
impl Clone for CellRawValue
Source§fn clone(&self) -> CellRawValue
fn clone(&self) -> CellRawValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CellRawValue
impl Debug for CellRawValue
Source§impl Default for CellRawValue
impl Default for CellRawValue
Source§fn default() -> CellRawValue
fn default() -> CellRawValue
Returns the “default value” for a type. Read more
Source§impl Display for CellRawValue
impl Display for CellRawValue
Source§impl PartialEq for CellRawValue
impl PartialEq for CellRawValue
Source§impl PartialOrd for CellRawValue
impl PartialOrd for CellRawValue
impl StructuralPartialEq for CellRawValue
Auto Trait Implementations§
impl Freeze for CellRawValue
impl RefUnwindSafe for CellRawValue
impl Send for CellRawValue
impl Sync for CellRawValue
impl Unpin for CellRawValue
impl UnwindSafe for CellRawValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Separable for Twhere
T: Display,
impl<T> Separable for Twhere
T: Display,
Source§fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
Adds separators according to the given
SeparatorPolicy. Read moreSource§fn separate_with_commas(&self) -> String
fn separate_with_commas(&self) -> String
Inserts a comma every three digits from the right. Read more
Source§fn separate_with_spaces(&self) -> String
fn separate_with_spaces(&self) -> String
Inserts a space every three digits from the right. Read more
Source§fn separate_with_dots(&self) -> String
fn separate_with_dots(&self) -> String
Inserts a period every three digits from the right. Read more
Source§fn separate_with_underscores(&self) -> String
fn separate_with_underscores(&self) -> String
Inserts an underscore every three digits from the right. Read more