pub struct TableCell {
pub id: Option<String>,
pub style: Option<String>,
pub column_span: Option<i32>,
pub row_span: Option<i32>,
pub horizontal_align: HorizontalAlign,
pub vertical_align: VerticalAlign,
pub content: Style,
}Fields§
§id: Option<String>§style: Option<String>§column_span: Option<i32>§row_span: Option<i32>§horizontal_align: HorizontalAlign§vertical_align: VerticalAlign§content: StyleTrait Implementations§
source§impl PartialEq<TableCell> for TableCell
impl PartialEq<TableCell> for TableCell
impl StructuralPartialEq for TableCell
Auto Trait Implementations§
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