Struct html_sys::tables::TableColumn  
source · #[non_exhaustive]pub struct TableColumn {
    pub span: Option<Cow<'static, str>>,
    /* private fields */
}Expand description
The HTML <col> element
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.span: Option<Cow<'static, str>>Number of columns spanned by the element
Trait Implementations§
source§impl Clone for TableColumn
 
impl Clone for TableColumn
source§fn clone(&self) -> TableColumn
 
fn clone(&self) -> TableColumn
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 TableColumn
 
impl Debug for TableColumn
source§impl Default for TableColumn
 
impl Default for TableColumn
source§fn default() -> TableColumn
 
fn default() -> TableColumn
Returns the “default value” for a type. Read more
source§impl Deref for TableColumn
 
impl Deref for TableColumn
source§impl DerefMut for TableColumn
 
impl DerefMut for TableColumn
source§impl Display for TableColumn
 
impl Display for TableColumn
source§impl PartialEq<TableColumn> for TableColumn
 
impl PartialEq<TableColumn> for TableColumn
source§fn eq(&self, other: &TableColumn) -> bool
 
fn eq(&self, other: &TableColumn) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<TableColumn> for TableColumn
 
impl PartialOrd<TableColumn> for TableColumn
source§fn partial_cmp(&self, other: &TableColumn) -> Option<Ordering>
 
fn partial_cmp(&self, other: &TableColumn) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read more