pub struct FragmentTableCell {
pub row: usize,
pub column: usize,
pub row_span: usize,
pub column_span: usize,
pub blocks: Vec<FragmentBlock>,
pub fmt_padding: Option<i64>,
pub fmt_border: Option<i64>,
pub fmt_vertical_alignment: Option<CellVerticalAlignment>,
pub fmt_background_color: Option<String>,
}Expand description
One cell within a FragmentTable.
Fields§
§row: usize§column: usize§row_span: usize§column_span: usize§blocks: Vec<FragmentBlock>§fmt_padding: Option<i64>§fmt_border: Option<i64>§fmt_vertical_alignment: Option<CellVerticalAlignment>§fmt_background_color: Option<String>Trait Implementations§
Source§impl Clone for FragmentTableCell
impl Clone for FragmentTableCell
Source§fn clone(&self) -> FragmentTableCell
fn clone(&self) -> FragmentTableCell
Returns a duplicate of the value. Read more
1.0.0 · 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 FragmentTableCell
impl Debug for FragmentTableCell
Source§impl<'de> Deserialize<'de> for FragmentTableCell
impl<'de> Deserialize<'de> for FragmentTableCell
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FragmentTableCell
impl RefUnwindSafe for FragmentTableCell
impl Send for FragmentTableCell
impl Sync for FragmentTableCell
impl Unpin for FragmentTableCell
impl UnsafeUnpin for FragmentTableCell
impl UnwindSafe for FragmentTableCell
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