pub struct TableCellContext {
pub table_id: usize,
pub row: usize,
pub column: usize,
}Expand description
Snapshot-friendly reference to a table cell (plain IDs, no live handles).
Fields§
§table_id: usize§row: usize§column: usizeTrait Implementations§
Source§impl Clone for TableCellContext
impl Clone for TableCellContext
Source§fn clone(&self) -> TableCellContext
fn clone(&self) -> TableCellContext
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 TableCellContext
impl Debug for TableCellContext
Source§impl PartialEq for TableCellContext
impl PartialEq for TableCellContext
impl Eq for TableCellContext
impl StructuralPartialEq for TableCellContext
Auto Trait Implementations§
impl Freeze for TableCellContext
impl RefUnwindSafe for TableCellContext
impl Send for TableCellContext
impl Sync for TableCellContext
impl Unpin for TableCellContext
impl UnsafeUnpin for TableCellContext
impl UnwindSafe for TableCellContext
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