RawChordMut

Trait RawChordMut 

Source
pub trait RawChordMut: RawChord {
    // Required method
    fn as_mut_slice(&mut self) -> &mut [Self::Elem];
}
Expand description

The RawChordMut trait extends the RawChord trait to provide mutable access to the underlying elements of the chord representation.

Required Methods§

Source

fn as_mut_slice(&mut self) -> &mut [Self::Elem]

returns a mutable slice representation of the chord.

Implementations on Foreign Types§

Source§

impl<T> RawChordMut for &mut [T]

Source§

fn as_mut_slice(&mut self) -> &mut [T]

Source§

impl<T> RawChordMut for [T]

Source§

fn as_mut_slice(&mut self) -> &mut [T]

Source§

impl<T> RawChordMut for Vec<T>

Source§

fn as_mut_slice(&mut self) -> &mut [T]

Source§

impl<const N: usize, T> RawChordMut for [T; N]

Source§

fn as_mut_slice(&mut self) -> &mut [T]

Implementors§