pub struct AudioTrackParameterLocksArray(pub Box<Array<AudioTrackParameterLocks, 64>>);Tuple Fields§
§0: Box<Array<AudioTrackParameterLocks, 64>>Implementations§
Source§impl AudioTrackParameterLocksArray
impl AudioTrackParameterLocksArray
Sourcepub fn iter(&self) -> Iter<'_, AudioTrackParameterLocks>
pub fn iter(&self) -> Iter<'_, AudioTrackParameterLocks>
Returns an iterator with borrowed AudioTrackParameterLocks items
Sourcepub fn iter_mut(&mut self) -> IterMut<'_, AudioTrackParameterLocks>
pub fn iter_mut(&mut self) -> IterMut<'_, AudioTrackParameterLocks>
Returns an iterator with mutably borrowed AudioTrackParameterLocks items
Trait Implementations§
Source§impl Clone for AudioTrackParameterLocksArray
impl Clone for AudioTrackParameterLocksArray
Source§fn clone(&self) -> AudioTrackParameterLocksArray
fn clone(&self) -> AudioTrackParameterLocksArray
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<const N: usize> Defaults<[AudioTrackParameterLocksArray; N]> for AudioTrackParameterLocksArray
impl<const N: usize> Defaults<[AudioTrackParameterLocksArray; N]> for AudioTrackParameterLocksArray
Source§impl<const N: usize> Defaults<Box<Array<AudioTrackParameterLocksArray, N>>> for AudioTrackParameterLocksArray
impl<const N: usize> Defaults<Box<Array<AudioTrackParameterLocksArray, N>>> for AudioTrackParameterLocksArray
Source§impl<'de> Deserialize<'de> for AudioTrackParameterLocksArray
impl<'de> Deserialize<'de> for AudioTrackParameterLocksArray
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 AudioTrackParameterLocksArray
impl Index<usize> for AudioTrackParameterLocksArray
Source§impl PartialEq for AudioTrackParameterLocksArray
impl PartialEq for AudioTrackParameterLocksArray
Source§fn eq(&self, other: &AudioTrackParameterLocksArray) -> bool
fn eq(&self, other: &AudioTrackParameterLocksArray) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AudioTrackParameterLocksArray
Auto Trait Implementations§
impl Freeze for AudioTrackParameterLocksArray
impl RefUnwindSafe for AudioTrackParameterLocksArray
impl Send for AudioTrackParameterLocksArray
impl Sync for AudioTrackParameterLocksArray
impl Unpin for AudioTrackParameterLocksArray
impl UnwindSafe for AudioTrackParameterLocksArray
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