pub struct PageBlockTable {
pub caption: RichText,
pub cells: Vec<Vec<PageBlockTableCell>>,
pub is_bordered: bool,
pub is_striped: bool,
}
Expand description
A table
Fields§
§caption: RichText
Table caption
cells: Vec<Vec<PageBlockTableCell>>
Table cells
is_bordered: bool
True, if the table is bordered
is_striped: bool
True, if the table is striped
Trait Implementations§
Source§impl Clone for PageBlockTable
impl Clone for PageBlockTable
Source§fn clone(&self) -> PageBlockTable
fn clone(&self) -> PageBlockTable
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 PageBlockTable
impl Debug for PageBlockTable
Source§impl<'de> Deserialize<'de> for PageBlockTable
impl<'de> Deserialize<'de> for PageBlockTable
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
Source§impl PartialEq for PageBlockTable
impl PartialEq for PageBlockTable
Source§impl Serialize for PageBlockTable
impl Serialize for PageBlockTable
impl StructuralPartialEq for PageBlockTable
Auto Trait Implementations§
impl Freeze for PageBlockTable
impl RefUnwindSafe for PageBlockTable
impl Send for PageBlockTable
impl Sync for PageBlockTable
impl Unpin for PageBlockTable
impl UnwindSafe for PageBlockTable
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