Struct m4ri_sys::Mzd[][src]

#[repr(C)]pub struct Mzd {
    pub nrows: Rci,
    pub ncols: Rci,
    pub width: c_int,
    pub rows: *const *mut Word,
    // some fields omitted
}

Represents the Mzd data type used by M4RI

Fields

nrows: Rci

Number of rows

ncols: Rci

Number of columns

width: c_int

Number of words with valid bits: width = ceil(ncols / m4ri_radix)

rows: *const *mut Word

Address of first word in each row, so the first word of row [i] is in m->rows[i]

Trait Implementations

impl Drop for Mzd[src]

Auto Trait Implementations

impl RefUnwindSafe for Mzd[src]

impl !Send for Mzd[src]

impl !Sync for Mzd[src]

impl Unpin for Mzd[src]

impl UnwindSafe for Mzd[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.