pub struct ArenaMatrix {
pub rows: usize,
pub cols: usize,
/* private fields */
}Expand description
2D matrix stored contiguously within an arena.
Fields§
§rows: usizeNumber of rows.
cols: usizeNumber of columns.
Implementations§
Auto Trait Implementations§
impl Freeze for ArenaMatrix
impl RefUnwindSafe for ArenaMatrix
impl Send for ArenaMatrix
impl Sync for ArenaMatrix
impl Unpin for ArenaMatrix
impl UnsafeUnpin for ArenaMatrix
impl UnwindSafe for ArenaMatrix
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