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

A mutable buffer that is contiguous in memory.

If the implementing type is a buffer which exposes a prefix and a suffix, the AsMut implementation provides access only to the body.

ContiguousBufferMut is shorthand for ContiguousBuffer + FragmentedBufferMut + AsMut<[u8]>.

Object Safety§

This trait is not object safe.

Implementors§