pub struct TableCell {
pub data: String,
pub header: bool,
pub colspan: usize,
pub rowspan: usize,
}
Fields§
§data: String
Cell content
header: bool
Render cell as header
colspan: usize
Number of columns the cell extends
rowspan: usize
Number 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