pub enum DataCell {
IntegerDataCell(i32),
TextDataCell(String),
FloatDataCell(f64),
BoolDataCell(bool),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataCell
impl RefUnwindSafe for DataCell
impl Send for DataCell
impl Sync for DataCell
impl Unpin for DataCell
impl UnwindSafe for DataCell
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