pub struct RichBlockTable {
pub cells: Vec<Vec<RichBlockTableCell>>,
pub is_bordered: Option<bool>,
pub is_striped: Option<bool>,
pub caption: Option<RichText>,
}Expand description
A table (<table>).
Fields§
§cells: Vec<Vec<RichBlockTableCell>>A 2-D array of cells (rows × columns).
is_bordered: Option<bool>true if the table has visible borders.
is_striped: Option<bool>true if alternate rows are shaded.
caption: Option<RichText>Optional table caption.
Trait Implementations§
Source§impl Clone for RichBlockTable
impl Clone for RichBlockTable
Source§fn clone(&self) -> RichBlockTable
fn clone(&self) -> RichBlockTable
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 RichBlockTable
impl Debug for RichBlockTable
Source§impl<'de> Deserialize<'de> for RichBlockTable
impl<'de> Deserialize<'de> for RichBlockTable
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 RichBlockTable
impl RefUnwindSafe for RichBlockTable
impl Send for RichBlockTable
impl Sync for RichBlockTable
impl Unpin for RichBlockTable
impl UnsafeUnpin for RichBlockTable
impl UnwindSafe for RichBlockTable
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