pub trait ContiguousBufferMutImpl: ContiguousBuffer + AsMut<[u8]> { }
Expand description

A helper trait to implement FragmentedBufferMut and ContiguousBufferMut for any type that is AsMut<[u8]>.

Implementers of ContiguousBufferMutImpl will receive a blanket implementation of FragmentedBufferMut and ContiguousBufferMut, where the FragmentedBufferMut implementation is optimized for contiguous buffers.

Implementations on Foreign Types§

source§

impl<'a> ContiguousBufferMutImpl for &'a mut [u8]

Implementors§