Struct html_sys::tables::TableColumnGroup  
source · #[non_exhaustive]pub struct TableColumnGroup {
    pub span: Option<Cow<'static, str>>,
    /* private fields */
}Expand description
The HTML <colgroup> 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 TableColumnGroup
 
impl Clone for TableColumnGroup
source§fn clone(&self) -> TableColumnGroup
 
fn clone(&self) -> TableColumnGroup
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 TableColumnGroup
 
impl Debug for TableColumnGroup
source§impl Default for TableColumnGroup
 
impl Default for TableColumnGroup
source§fn default() -> TableColumnGroup
 
fn default() -> TableColumnGroup
Returns the “default value” for a type. Read more
source§impl Deref for TableColumnGroup
 
impl Deref for TableColumnGroup
source§impl DerefMut for TableColumnGroup
 
impl DerefMut for TableColumnGroup
source§impl Display for TableColumnGroup
 
impl Display for TableColumnGroup
source§impl PartialEq<TableColumnGroup> for TableColumnGroup
 
impl PartialEq<TableColumnGroup> for TableColumnGroup
source§fn eq(&self, other: &TableColumnGroup) -> bool
 
fn eq(&self, other: &TableColumnGroup) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<TableColumnGroup> for TableColumnGroup
 
impl PartialOrd<TableColumnGroup> for TableColumnGroup
source§fn partial_cmp(&self, other: &TableColumnGroup) -> Option<Ordering>
 
fn partial_cmp(&self, other: &TableColumnGroup) -> 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