pub enum TableRowChild {
Script(Script),
TableCell(TableCell),
TableHeader(TableHeader),
Template(Template),
}Expand description
The permitted child items for the TableRow element
Variants§
Script(Script)
The Script element
TableCell(TableCell)
The TableCell element
TableHeader(TableHeader)
The TableHeader element
Template(Template)
The Template element
Trait Implementations§
Source§impl Clone for TableRowChild
impl Clone for TableRowChild
Source§fn clone(&self) -> TableRowChild
fn clone(&self) -> TableRowChild
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 TableRowChild
impl Debug for TableRowChild
Source§impl Display for TableRowChild
impl Display for TableRowChild
Source§impl From<Script> for TableRowChild
impl From<Script> for TableRowChild
Source§impl From<TableCell> for TableRowChild
impl From<TableCell> for TableRowChild
Source§impl From<TableHeader> for TableRowChild
impl From<TableHeader> for TableRowChild
Source§fn from(value: TableHeader) -> Self
fn from(value: TableHeader) -> Self
Converts to this type from the input type.
Source§impl From<Template> for TableRowChild
impl From<Template> for TableRowChild
Source§impl PartialEq for TableRowChild
impl PartialEq for TableRowChild
Source§impl Render for TableRowChild
impl Render for TableRowChild
impl StructuralPartialEq for TableRowChild
Auto Trait Implementations§
impl Freeze for TableRowChild
impl RefUnwindSafe for TableRowChild
impl Send for TableRowChild
impl Sync for TableRowChild
impl Unpin for TableRowChild
impl UnwindSafe for TableRowChild
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