pub struct AudioTrackTrigsArray(pub [AudioTrackTrigs; 8]);Tuple Fields§
§0: [AudioTrackTrigs; 8]Implementations§
Source§impl AudioTrackTrigsArray
impl AudioTrackTrigsArray
Sourcepub fn iter(&self) -> Iter<'_, AudioTrackTrigs>
pub fn iter(&self) -> Iter<'_, AudioTrackTrigs>
Returns an iterator with borrowed AudioTrackTrigs items
Sourcepub fn iter_mut(&mut self) -> IterMut<'_, AudioTrackTrigs>
pub fn iter_mut(&mut self) -> IterMut<'_, AudioTrackTrigs>
Returns an iterator with mutably borrowed AudioTrackTrigs items
Trait Implementations§
Source§impl Clone for AudioTrackTrigsArray
impl Clone for AudioTrackTrigsArray
Source§fn clone(&self) -> AudioTrackTrigsArray
fn clone(&self) -> AudioTrackTrigsArray
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 AudioTrackTrigsArray
impl Debug for AudioTrackTrigsArray
Source§impl Default for AudioTrackTrigsArray
impl Default for AudioTrackTrigsArray
Source§impl<'de> Deserialize<'de> for AudioTrackTrigsArray
impl<'de> Deserialize<'de> for AudioTrackTrigsArray
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 AudioTrackTrigsArray
impl Index<usize> for AudioTrackTrigsArray
Source§impl IndexMut<usize> for AudioTrackTrigsArray
impl IndexMut<usize> for AudioTrackTrigsArray
Source§impl IntoIterator for AudioTrackTrigsArray
impl IntoIterator for AudioTrackTrigsArray
Source§impl PartialEq for AudioTrackTrigsArray
impl PartialEq for AudioTrackTrigsArray
Source§impl Serialize for AudioTrackTrigsArray
impl Serialize for AudioTrackTrigsArray
impl StructuralPartialEq for AudioTrackTrigsArray
Auto Trait Implementations§
impl Freeze for AudioTrackTrigsArray
impl RefUnwindSafe for AudioTrackTrigsArray
impl Send for AudioTrackTrigsArray
impl Sync for AudioTrackTrigsArray
impl Unpin for AudioTrackTrigsArray
impl UnwindSafe for AudioTrackTrigsArray
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