pub struct MidiTrackTrigsArray(pub [MidiTrackTrigs; 8]);Tuple Fields§
§0: [MidiTrackTrigs; 8]Implementations§
Source§impl MidiTrackTrigsArray
impl MidiTrackTrigsArray
Sourcepub fn iter(&self) -> Iter<'_, MidiTrackTrigs>
pub fn iter(&self) -> Iter<'_, MidiTrackTrigs>
Returns an iterator with borrowed MidiTrackTrigs items
Sourcepub fn iter_mut(&mut self) -> IterMut<'_, MidiTrackTrigs>
pub fn iter_mut(&mut self) -> IterMut<'_, MidiTrackTrigs>
Returns an iterator with mutably borrowed MidiTrackTrigs items
Trait Implementations§
Source§impl Clone for MidiTrackTrigsArray
impl Clone for MidiTrackTrigsArray
Source§fn clone(&self) -> MidiTrackTrigsArray
fn clone(&self) -> MidiTrackTrigsArray
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MidiTrackTrigsArray
impl Debug for MidiTrackTrigsArray
Source§impl Default for MidiTrackTrigsArray
impl Default for MidiTrackTrigsArray
Source§impl<'de> Deserialize<'de> for MidiTrackTrigsArray
impl<'de> Deserialize<'de> for MidiTrackTrigsArray
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Index<usize> for MidiTrackTrigsArray
impl Index<usize> for MidiTrackTrigsArray
Source§impl IndexMut<usize> for MidiTrackTrigsArray
impl IndexMut<usize> for MidiTrackTrigsArray
Source§impl IntoIterator for MidiTrackTrigsArray
impl IntoIterator for MidiTrackTrigsArray
Source§impl PartialEq for MidiTrackTrigsArray
impl PartialEq for MidiTrackTrigsArray
Source§impl Serialize for MidiTrackTrigsArray
impl Serialize for MidiTrackTrigsArray
impl StructuralPartialEq for MidiTrackTrigsArray
Auto Trait Implementations§
impl Freeze for MidiTrackTrigsArray
impl RefUnwindSafe for MidiTrackTrigsArray
impl Send for MidiTrackTrigsArray
impl Sync for MidiTrackTrigsArray
impl Unpin for MidiTrackTrigsArray
impl UnwindSafe for MidiTrackTrigsArray
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more