pub struct Cell<T: CellDisplay + CellValue> {
pub text: Option<T>,
pub rich_text: Option<RichText>,
pub format: Option<Format>,
pub hyperlink: Option<String>,
/* private fields */
}Fields§
§text: Option<T>§rich_text: Option<RichText>§format: Option<Format>§hyperlink: 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