pub struct PageBlockTable {
pub bordered: bool,
pub striped: bool,
pub title: RichText,
pub rows: Vec<PageTableRow>,
}Expand description
Generated from the following TL definition:
pageBlockTable#bf4dea82 flags:# bordered:flags.0?true striped:flags.1?true title:RichText rows:Vector<PageTableRow> = PageBlockFields§
§bordered: bool§striped: bool§title: RichText§rows: Vec<PageTableRow>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 Deserializable for PageBlockTable
impl Deserializable for PageBlockTable
Source§impl From<PageBlockTable> for PageBlock
impl From<PageBlockTable> for PageBlock
Source§fn from(x: PageBlockTable) -> Self
fn from(x: PageBlockTable) -> Self
Converts to this type from the input type.
Source§impl Identifiable for PageBlockTable
impl Identifiable for PageBlockTable
Source§const CONSTRUCTOR_ID: u32 = 3209554562
const CONSTRUCTOR_ID: u32 = 3209554562
The unique identifier for the type.
Source§impl PartialEq for PageBlockTable
impl PartialEq for PageBlockTable
Source§impl Serializable for PageBlockTable
impl Serializable for PageBlockTable
Source§impl TryFrom<PageBlock> for PageBlockTable
impl TryFrom<PageBlock> 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 UnsafeUnpin 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