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);
}

Required Methods

Safety

Caller must ensure i is in bounds.

Implementors