pub trait BufferMappedRangeInterface: CommonTraits { // Required methods fn slice(&self) -> &[u8] ⓘ; fn slice_mut(&mut self) -> &mut [u8] ⓘ; }
custom