pub struct AudioTrackMachineSlot {
pub static_slot_id: u8,
pub flex_slot_id: u8,
pub unused_1: u8,
pub unused_2: u8,
pub recorder_slot_id: u8,
}Expand description
Audio Tracks Machine Slot assignments. Sample Slots assigned for each machine. Also tracks the recording buffer sample slot assignment.
Fields§
§static_slot_id: u8§flex_slot_id: u8§unused_1: u8§unused_2: u8§recorder_slot_id: u8Trait Implementations§
Source§impl AsMut<AudioTrackMachineSlot> for AudioTrackMachineSlot
impl AsMut<AudioTrackMachineSlot> for AudioTrackMachineSlot
Source§fn as_mut(&mut self) -> &mut AudioTrackMachineSlot
fn as_mut(&mut self) -> &mut AudioTrackMachineSlot
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<AudioTrackMachineSlot> for AudioTrackMachineSlot
impl AsRef<AudioTrackMachineSlot> for AudioTrackMachineSlot
Source§fn as_ref(&self) -> &AudioTrackMachineSlot
fn as_ref(&self) -> &AudioTrackMachineSlot
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for AudioTrackMachineSlot
impl Clone for AudioTrackMachineSlot
Source§fn clone(&self) -> AudioTrackMachineSlot
fn clone(&self) -> AudioTrackMachineSlot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AudioTrackMachineSlot
Source§impl Debug for AudioTrackMachineSlot
impl Debug for AudioTrackMachineSlot
Source§impl Default for AudioTrackMachineSlot
impl Default for AudioTrackMachineSlot
Source§impl<const N: usize> Defaults<Box<[AudioTrackMachineSlot; N]>> for AudioTrackMachineSlot
impl<const N: usize> Defaults<Box<[AudioTrackMachineSlot; N]>> for AudioTrackMachineSlot
Source§impl<const N: usize> Defaults<[AudioTrackMachineSlot; N]> for AudioTrackMachineSlot
impl<const N: usize> Defaults<[AudioTrackMachineSlot; N]> for AudioTrackMachineSlot
Source§impl<'de> Deserialize<'de> for AudioTrackMachineSlot
impl<'de> Deserialize<'de> for AudioTrackMachineSlot
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
impl Eq for AudioTrackMachineSlot
Source§impl Hash for AudioTrackMachineSlot
impl Hash for AudioTrackMachineSlot
Source§impl Ord for AudioTrackMachineSlot
impl Ord for AudioTrackMachineSlot
Source§fn cmp(&self, other: &AudioTrackMachineSlot) -> Ordering
fn cmp(&self, other: &AudioTrackMachineSlot) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AudioTrackMachineSlot
impl PartialEq for AudioTrackMachineSlot
Source§impl PartialOrd for AudioTrackMachineSlot
impl PartialOrd for AudioTrackMachineSlot
Source§impl Serialize for AudioTrackMachineSlot
impl Serialize for AudioTrackMachineSlot
impl StructuralPartialEq for AudioTrackMachineSlot
Auto Trait Implementations§
impl Freeze for AudioTrackMachineSlot
impl RefUnwindSafe for AudioTrackMachineSlot
impl Send for AudioTrackMachineSlot
impl Sync for AudioTrackMachineSlot
impl Unpin for AudioTrackMachineSlot
impl UnsafeUnpin for AudioTrackMachineSlot
impl UnwindSafe for AudioTrackMachineSlot
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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