pub struct TableCell {
pub data: String,
pub header: bool,
pub colspan: usize,
pub rowspan: usize,
}Fields§
§data: StringCell content
header: boolRender cell as header
colspan: usizeNumber of columns the cell extends
rowspan: usizeNumber of rows the cell extends
Implementations§
Trait Implementations§
impl Eq for TableCell
impl StructuralPartialEq for TableCell
Auto Trait Implementations§
impl Freeze for TableCell
impl RefUnwindSafe for TableCell
impl Send for TableCell
impl Sync for TableCell
impl Unpin for TableCell
impl UnwindSafe for TableCell
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