pub struct CellData {
pub content: String,
pub style: Option<CellStyle>,
pub colspan: usize,
pub rowspan: usize,
}Expand description
Cell data with optional styling and spanning
Fields§
§content: StringCell content
style: Option<CellStyle>Optional custom style for this cell
colspan: usizeNumber of columns this cell spans (1 = no spanning)
rowspan: usizeNumber of rows this cell spans (1 = no spanning)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CellData
impl RefUnwindSafe for CellData
impl Send for CellData
impl Sync for CellData
impl Unpin for CellData
impl UnsafeUnpin for CellData
impl UnwindSafe for CellData
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