pub struct TableSection {
pub kind: TableSectionKind,
pub rows: Vec<TableRow>,
pub attrs: BlockAttrs,
}Fields§
§kind: TableSectionKind§rows: Vec<TableRow>§attrs: BlockAttrsTrait Implementations§
Source§impl Clone for TableSection
impl Clone for TableSection
Source§fn clone(&self) -> TableSection
fn clone(&self) -> TableSection
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 TableSection
impl Debug for TableSection
Source§impl<'de> Deserialize<'de> for TableSection
impl<'de> Deserialize<'de> for TableSection
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 TableSection
impl PartialEq for TableSection
Source§impl Serialize for TableSection
impl Serialize for TableSection
impl StructuralPartialEq for TableSection
Auto Trait Implementations§
impl Freeze for TableSection
impl RefUnwindSafe for TableSection
impl Send for TableSection
impl Sync for TableSection
impl Unpin for TableSection
impl UnsafeUnpin for TableSection
impl UnwindSafe for TableSection
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