pub struct CellContext {
pub row: usize,
pub column: usize,
pub value: DocValue,
}Expand description
单元格级写入事件的上下文。
Fields§
§row: usize行索引(从零开始)。
column: usize列索引(从零开始)。
value: DocValue单元格值。
Trait Implementations§
Source§impl Clone for CellContext
impl Clone for CellContext
Source§fn clone(&self) -> CellContext
fn clone(&self) -> CellContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CellContext
impl RefUnwindSafe for CellContext
impl Send for CellContext
impl Sync for CellContext
impl Unpin for CellContext
impl UnsafeUnpin for CellContext
impl UnwindSafe for CellContext
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