pub enum SubTableGroup {
TableColspec(Box<TableColspec>),
TableHead(Box<TableHead>),
TableBody(Box<TableBody>),
}
Variants§
Trait Implementations§
Source§impl Clone for SubTableGroup
impl Clone for SubTableGroup
Source§fn clone(&self) -> SubTableGroup
fn clone(&self) -> SubTableGroup
Returns a copy 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 SubTableGroup
impl Debug for SubTableGroup
Source§impl From<TableBody> for SubTableGroup
impl From<TableBody> for SubTableGroup
Source§impl From<TableColspec> for SubTableGroup
impl From<TableColspec> for SubTableGroup
Source§fn from(inner: TableColspec) -> Self
fn from(inner: TableColspec) -> Self
Converts to this type from the input type.
Source§impl From<TableHead> for SubTableGroup
impl From<TableHead> for SubTableGroup
Source§impl HasChildren<SubTableGroup> for TableGroup
impl HasChildren<SubTableGroup> for TableGroup
fn with_children(children: Vec<SubTableGroup>) -> TableGroup
fn children(&self) -> &Vec<SubTableGroup>
fn children_mut(&mut self) -> &mut Vec<SubTableGroup>
fn append_child<R: Into<C>>(&mut self, child: R)
fn append_children<R: Into<C> + Clone>(&mut self, more: &[R])
Source§impl PartialEq for SubTableGroup
impl PartialEq for SubTableGroup
Source§impl Serialize for SubTableGroup
impl Serialize for SubTableGroup
impl StructuralPartialEq for SubTableGroup
Auto Trait Implementations§
impl Freeze for SubTableGroup
impl RefUnwindSafe for SubTableGroup
impl Send for SubTableGroup
impl Sync for SubTableGroup
impl Unpin for SubTableGroup
impl UnwindSafe for SubTableGroup
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