pub struct Matrix<T> {
pub rows: usize,
pub cols: usize,
pub data: *mut T,
}Fields§
§rows: usize§cols: usize§data: *mut TAuto Trait Implementations§
impl<T> Freeze for Matrix<T>
impl<T> RefUnwindSafe for Matrix<T>where
T: RefUnwindSafe,
impl<T> !Send for Matrix<T>
impl<T> !Sync for Matrix<T>
impl<T> Unpin for Matrix<T>
impl<T> UnsafeUnpin for Matrix<T>
impl<T> UnwindSafe for Matrix<T>where
T: RefUnwindSafe,
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