Skip to main content

PartitionedBufferMut

Trait PartitionedBufferMut 

Source
pub unsafe trait PartitionedBufferMut: Partitioned {
    // Required method
    fn as_bytes_mut(&mut self) -> &mut [u8] ;
}
Expand description

A writable partitioned buffer (receive side of *v collectives).

§Safety

As PartitionedBuffer, but for mutable access.

Required Methods§

Source

fn as_bytes_mut(&mut self) -> &mut [u8]

Mutable byte view of the whole underlying buffer.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§