#[repr(C)]pub struct Mzd {
pub nrows: Rci,
pub ncols: Rci,
pub width: c_int,
pub rows: *const *mut Word,
/* private fields */
}Expand description
Represents the Mzd data type used by M4RI
Fields§
§nrows: RciNumber of rows
ncols: RciNumber of columns
width: c_intNumber of words with valid bits: width = ceil(ncols / m4ri_radix)
rows: *const *mut WordAddress of first word in each row, so the first word of row [i] is in m->rows[i]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Mzd
impl RefUnwindSafe for Mzd
impl !Send for Mzd
impl !Sync for Mzd
impl Unpin for Mzd
impl UnwindSafe for Mzd
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