pub struct PlayerRackDevice {
pub id: Symbol,
pub label: String,
pub player_kind: Symbol,
pub order: u64,
pub bypassed: bool,
pub direct_record: bool,
pub frozen: bool,
pub trace: bool,
pub route: Symbol,
pub placement_hint: String,
}Expand description
One player device in a rack.
Fields§
§id: SymbolStable player id.
label: StringDisplay label.
player_kind: SymbolPlayer family.
order: u64Zero-based order in the chain.
bypassed: boolBypass state.
direct_record: boolWhether direct recording is armed.
frozen: boolWhether output is frozen for deterministic replay.
trace: boolWhether trace inspection is enabled.
route: SymbolRouting target after the player.
placement_hint: StringPlacement hint for this player.
Trait Implementations§
Source§impl Clone for PlayerRackDevice
impl Clone for PlayerRackDevice
Source§fn clone(&self) -> PlayerRackDevice
fn clone(&self) -> PlayerRackDevice
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 moreSource§impl Debug for PlayerRackDevice
impl Debug for PlayerRackDevice
impl Eq for PlayerRackDevice
Source§impl PartialEq for PlayerRackDevice
impl PartialEq for PlayerRackDevice
impl StructuralPartialEq for PlayerRackDevice
Auto Trait Implementations§
impl Freeze for PlayerRackDevice
impl RefUnwindSafe for PlayerRackDevice
impl Send for PlayerRackDevice
impl Sync for PlayerRackDevice
impl Unpin for PlayerRackDevice
impl UnsafeUnpin for PlayerRackDevice
impl UnwindSafe for PlayerRackDevice
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> 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.