#[repr(C)]pub struct matrix {
pub rows: c_int,
pub cols: c_int,
pub vals: *mut *mut f32,
}Fields§
§rows: c_int§cols: c_int§vals: *mut *mut f32Trait Implementations§
Auto Trait Implementations§
impl !Send for matrix
impl !Sync for matrix
impl Freeze for matrix
impl RefUnwindSafe for matrix
impl Unpin for matrix
impl UnsafeUnpin for matrix
impl UnwindSafe for matrix
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