pub struct TableCell {
pub text: Option<String>,
pub column_span: u16,
pub row_span: u16,
pub alignment: TableAlignment,
}Expand description
Owned payload of one cell in a libmandoc table row.
Fields§
§text: Option<String>§column_span: u16§row_span: u16§alignment: TableAlignmentTrait 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 UnsafeUnpin 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