pub struct ResolvedTableCell {
pub text: Option<ResolvedTextBody>,
pub fill: Option<Paint>,
pub margins: TextInsets,
pub left: Option<ResolvedTableBorder>,
pub right: Option<ResolvedTableBorder>,
pub top: Option<ResolvedTableBorder>,
pub bottom: Option<ResolvedTableBorder>,
pub row_span: u32,
pub grid_span: u32,
pub horizontal_merge: bool,
pub vertical_merge: bool,
}Fields§
§text: Option<ResolvedTextBody>§fill: Option<Paint>§margins: TextInsets§left: Option<ResolvedTableBorder>§right: Option<ResolvedTableBorder>§top: Option<ResolvedTableBorder>§bottom: Option<ResolvedTableBorder>§row_span: u32§grid_span: u32§horizontal_merge: bool§vertical_merge: boolTrait Implementations§
Source§impl Clone for ResolvedTableCell
impl Clone for ResolvedTableCell
Source§fn clone(&self) -> ResolvedTableCell
fn clone(&self) -> ResolvedTableCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResolvedTableCell
impl Debug for ResolvedTableCell
Source§impl Default for ResolvedTableCell
impl Default for ResolvedTableCell
Source§impl PartialEq for ResolvedTableCell
impl PartialEq for ResolvedTableCell
impl StructuralPartialEq for ResolvedTableCell
Auto Trait Implementations§
impl Freeze for ResolvedTableCell
impl RefUnwindSafe for ResolvedTableCell
impl Send for ResolvedTableCell
impl Sync for ResolvedTableCell
impl Unpin for ResolvedTableCell
impl UnsafeUnpin for ResolvedTableCell
impl UnwindSafe for ResolvedTableCell
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