Struct spreadsheet_ods::cell::CellSpan
source · pub struct CellSpan { /* private fields */ }Expand description
A cell can span multiple rows/columns.
Implementations§
source§impl CellSpan
impl CellSpan
sourcepub fn set_row_span(&mut self, rows: u32)
pub fn set_row_span(&mut self, rows: u32)
Sets the row span of this cell. Cells below with values will be lost when writing.
sourcepub fn set_col_span(&mut self, cols: u32)
pub fn set_col_span(&mut self, cols: u32)
Sets the column span of this cell. Cells to the right with values will be lost when writing.
Trait Implementations§
impl Copy for CellSpan
Auto Trait Implementations§
impl RefUnwindSafe for CellSpan
impl Send for CellSpan
impl Sync for CellSpan
impl Unpin for CellSpan
impl UnwindSafe for CellSpan
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