pub struct CellSnapshot {
pub row: usize,
pub column: usize,
pub row_span: usize,
pub column_span: usize,
pub format: CellFormat,
pub blocks: Vec<BlockSnapshot>,
}Expand description
Snapshot of one table cell including its block content.
Fields§
§row: usize§column: usize§row_span: usize§column_span: usize§format: CellFormat§blocks: Vec<BlockSnapshot>Trait Implementations§
Source§impl Clone for CellSnapshot
impl Clone for CellSnapshot
Source§fn clone(&self) -> CellSnapshot
fn clone(&self) -> CellSnapshot
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 CellSnapshot
impl Debug for CellSnapshot
Source§impl PartialEq for CellSnapshot
impl PartialEq for CellSnapshot
impl Eq for CellSnapshot
impl StructuralPartialEq for CellSnapshot
Auto Trait Implementations§
impl Freeze for CellSnapshot
impl RefUnwindSafe for CellSnapshot
impl Send for CellSnapshot
impl Sync for CellSnapshot
impl Unpin for CellSnapshot
impl UnsafeUnpin for CellSnapshot
impl UnwindSafe for CellSnapshot
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