pub struct InputRichBlockTable {
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>>Cells of the table.
is_bordered: Option<bool>Pass true if the table has borders.
is_striped: Option<bool>Pass true if the table is striped.
caption: Option<RichText>Caption of the table.
Trait Implementations§
Source§impl Clone for InputRichBlockTable
impl Clone for InputRichBlockTable
Source§fn clone(&self) -> InputRichBlockTable
fn clone(&self) -> InputRichBlockTable
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 InputRichBlockTable
impl Debug for InputRichBlockTable
Source§impl<'de> Deserialize<'de> for InputRichBlockTable
impl<'de> Deserialize<'de> for InputRichBlockTable
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 InputRichBlockTable
impl RefUnwindSafe for InputRichBlockTable
impl Send for InputRichBlockTable
impl Sync for InputRichBlockTable
impl Unpin for InputRichBlockTable
impl UnsafeUnpin for InputRichBlockTable
impl UnwindSafe for InputRichBlockTable
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