Trait synfx_dsp_jit::locked::MutPointable
source · [−]pub trait MutPointable<E> {
fn as_mut_ptr(&mut self) -> *mut E;
fn len(&self) -> usize;
}
Expand description
Represents a type that I can get a mutable pointer to and a number of elements that it points to:
Required Methods
sourcefn as_mut_ptr(&mut self) -> *mut E
fn as_mut_ptr(&mut self) -> *mut E
Hands out a mutable pointer to the underlying memory:
sourcefn len(&self) -> usize
fn len(&self) -> usize
The number of the elements pointed to by MutPointable::as_mut_ptr