pub struct FirstRow;Expand description
FirstRow represents the first row of a crate::Table. It’s often contains headers data.
Trait Implementations
sourceimpl Object for FirstRow
impl Object for FirstRow
sourcefn cells(&self, _: usize, count_columns: usize) -> Vec<(usize, usize)>
fn cells(&self, _: usize, count_columns: usize) -> Vec<(usize, usize)>
Cells returns a set of cordinates of cells
sourcefn and<O: Object>(self, rhs: O) -> Combination<Self, O>
fn and<O: Object>(self, rhs: O) -> Combination<Self, O>
Combines cells. It doesn’t repeat cells. Read more
sourcefn not<O: Object>(self, rhs: O) -> Combination<Self, O>
fn not<O: Object>(self, rhs: O) -> Combination<Self, O>
Excludes rhs cells from this cells.
Auto Trait Implementations
impl RefUnwindSafe for FirstRow
impl Send for FirstRow
impl Sync for FirstRow
impl Unpin for FirstRow
impl UnwindSafe for FirstRow
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more