pub enum TableCellType {
Data,
Header,
}
Expand description
The different types of table cells
Variants§
Trait Implementations§
Source§impl Clone for TableCellType
impl Clone for TableCellType
Source§fn clone(&self) -> TableCellType
fn clone(&self) -> TableCellType
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 TableCellType
impl Debug for TableCellType
Source§impl Default for TableCellType
impl Default for TableCellType
Source§fn default() -> TableCellType
fn default() -> TableCellType
Returns the “default value” for a type. Read more
Source§impl Display for TableCellType
impl Display for TableCellType
Source§impl From<TableCellType> for HtmlTag
impl From<TableCellType> for HtmlTag
Source§fn from(value: TableCellType) -> Self
fn from(value: TableCellType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TableCellType
impl PartialEq for TableCellType
impl Copy for TableCellType
impl Eq for TableCellType
impl StructuralPartialEq for TableCellType
Auto Trait Implementations§
impl Freeze for TableCellType
impl RefUnwindSafe for TableCellType
impl Send for TableCellType
impl Sync for TableCellType
impl Unpin for TableCellType
impl UnwindSafe for TableCellType
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