pub struct BitMatrix {
pub rows: usize,
pub cols: usize,
/* private fields */
}Expand description
A compact boolean matrix stored as rows of u64 bit-words.
Fields§
§rows: usize§cols: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BitMatrix
impl RefUnwindSafe for BitMatrix
impl Send for BitMatrix
impl Sync for BitMatrix
impl Unpin for BitMatrix
impl UnsafeUnpin for BitMatrix
impl UnwindSafe for BitMatrix
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