#[repr(C)]pub struct Array2D {
pub _address: u8,
}Expand description
Represent a 2D array. The 2D array is stored in a single array, to improve cache usage.
Fields§
§_address: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for Array2D
impl RefUnwindSafe for Array2D
impl Send for Array2D
impl Sync for Array2D
impl Unpin for Array2D
impl UnwindSafe for Array2D
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