pub enum CellBlock {
Paragraph(ParagraphBlock),
Table(TableBlock),
}Expand description
One source-ordered block inside a table cell.
Variants§
Paragraph(ParagraphBlock)
A laid-out paragraph.
Table(TableBlock)
A recursively laid-out nested table.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CellBlock
impl RefUnwindSafe for CellBlock
impl Send for CellBlock
impl Sync for CellBlock
impl Unpin for CellBlock
impl UnsafeUnpin for CellBlock
impl UnwindSafe for CellBlock
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