pub enum TableHeaderScope {
Column,
Row,
}Expand description
Scope of a table header cell.
Column: header describes cells below; Row: header describes cells to the right.
Variants§
Column
Header describes cells in the column below.
Row
Header describes cells in the row to the right.
Trait Implementations§
Source§impl Clone for TableHeaderScope
impl Clone for TableHeaderScope
Source§fn clone(&self) -> TableHeaderScope
fn clone(&self) -> TableHeaderScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TableHeaderScope
impl Debug for TableHeaderScope
Source§impl PartialEq for TableHeaderScope
impl PartialEq for TableHeaderScope
Source§fn eq(&self, other: &TableHeaderScope) -> bool
fn eq(&self, other: &TableHeaderScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TableHeaderScope
impl StructuralPartialEq for TableHeaderScope
Auto Trait Implementations§
impl Freeze for TableHeaderScope
impl RefUnwindSafe for TableHeaderScope
impl Send for TableHeaderScope
impl Sync for TableHeaderScope
impl Unpin for TableHeaderScope
impl UnsafeUnpin for TableHeaderScope
impl UnwindSafe for TableHeaderScope
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