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§
Sourcefn as_mut_slice(&mut self) -> &mut [Self::Elem]
fn as_mut_slice(&mut self) -> &mut [Self::Elem]
returns a mutable slice representation of the chord.