pub struct Cell<T: CellDisplay + CellValue> {
pub text: Option<T>,
pub format: Option<Format>,
pub hyperlink: Option<String>,
pub formula: Option<String>,
/* private fields */
}Fields§
§text: Option<T>§format: Option<Format>§hyperlink: Option<String>§formula: Option<String>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Cell<T>where
T: Freeze,
impl<T> RefUnwindSafe for Cell<T>where
T: RefUnwindSafe,
impl<T> Send for Cell<T>where
T: Send,
impl<T> Sync for Cell<T>where
T: Sync,
impl<T> Unpin for Cell<T>where
T: Unpin,
impl<T> UnwindSafe for Cell<T>where
T: UnwindSafe,
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