pub trait MutableBitmapExtension {
    fn as_slice_mut(&mut self) -> &mut [u8]Notable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8];
    unsafe fn set_bit_unchecked(&mut self, i: usize, value: bool);

    fn from_len_set(length: usize) -> MutableBitmap { ... }
}

Required Methods

Safety

Caller must ensure i is in bounds.

Provided Methods

Initializes a MutableBitmap with all values set to valid/ true.

Implementations on Foreign Types

Implementors