Trait AsRawMut

Source
pub unsafe trait AsRawMut: AsRaw {
    // Required method
    fn as_raw_mut(&mut self) -> *mut <Self as AsRaw>::Raw;
}
Expand description

A rust type than can provide a mutable pointer to a raw value understood by the MPI C API.

Required Methods§

Source

fn as_raw_mut(&mut self) -> *mut <Self as AsRaw>::Raw

A mutable pointer to the raw value

Implementors§