pub enum TableRowSpecifier {
Current,
All,
Data,
Headers,
Totals,
Index(u32),
}Expand description
Specifies which row(s) to use in a table reference
Variants§
Current
The current row (context dependent)
All
All rows
Data
Data rows only
Headers
Headers row
Totals
Totals row
Index(u32)
Specific row by index (1-based)
Trait Implementations§
Source§impl Clone for TableRowSpecifier
impl Clone for TableRowSpecifier
Source§fn clone(&self) -> TableRowSpecifier
fn clone(&self) -> TableRowSpecifier
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 TableRowSpecifier
impl Debug for TableRowSpecifier
Source§impl Display for TableRowSpecifier
impl Display for TableRowSpecifier
Source§impl Hash for TableRowSpecifier
impl Hash for TableRowSpecifier
Source§impl PartialEq for TableRowSpecifier
impl PartialEq for TableRowSpecifier
impl StructuralPartialEq for TableRowSpecifier
Auto Trait Implementations§
impl Freeze for TableRowSpecifier
impl RefUnwindSafe for TableRowSpecifier
impl Send for TableRowSpecifier
impl Sync for TableRowSpecifier
impl Unpin for TableRowSpecifier
impl UnwindSafe for TableRowSpecifier
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