pub struct FormatWithIndex<F> { /* private fields */ }
Expand description
FormatWithIndex
is like a Format
an abstraction over a function you can use against a cell.
It differerent from Format
that it provides a row and column index.
Trait Implementations§
Source§impl<F, R> CellOption<R> for FormatWithIndex<F>
impl<F, R> CellOption<R> for FormatWithIndex<F>
Source§fn change_cell(&mut self, table: &mut Table<R>, entity: Entity)
fn change_cell(&mut self, table: &mut Table<R>, entity: Entity)
Modification function of a single cell.
Auto Trait Implementations§
impl<F> Freeze for FormatWithIndex<F>where
F: Freeze,
impl<F> RefUnwindSafe for FormatWithIndex<F>where
F: RefUnwindSafe,
impl<F> Send for FormatWithIndex<F>where
F: Send,
impl<F> Sync for FormatWithIndex<F>where
F: Sync,
impl<F> Unpin for FormatWithIndex<F>where
F: Unpin,
impl<F> UnwindSafe for FormatWithIndex<F>where
F: UnwindSafe,
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