pub struct Sheet {
pub cells: HashMap<CellPos, Cell>,
pub col_widths: Vec<u16>,
pub row_count: usize,
pub col_count: usize,
}Fields§
§cells: HashMap<CellPos, Cell>§col_widths: Vec<u16>§row_count: usize§col_count: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sheet
impl RefUnwindSafe for Sheet
impl Send for Sheet
impl Sync for Sheet
impl Unpin for Sheet
impl UnsafeUnpin for Sheet
impl UnwindSafe for Sheet
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