pub struct TxStreamFormatEntry {
pub iso_channel: i8,
pub pcm: u32,
pub midi: u32,
pub speed: u32,
pub labels: Vec<String>,
pub iec60958: [Iec60958Param; 32],
}Expand description
Entry for stream format in stream transmitted by the node.
Fields§
§iso_channel: i8The channel number for isochronous packet stream.
pcm: u32The number of PCM channels.
midi: u32The number of MIDI ports.
speed: u32The code to express transferring speed defined in IEEE 1394 specification.
labels: Vec<String>The list of names for data channel.
iec60958: [Iec60958Param; 32]The mode for each channel of IEC 60958.
Trait Implementations§
source§impl Clone for TxStreamFormatEntry
impl Clone for TxStreamFormatEntry
source§fn clone(&self) -> TxStreamFormatEntry
fn clone(&self) -> TxStreamFormatEntry
Returns a copy 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 TxStreamFormatEntry
impl Debug for TxStreamFormatEntry
source§impl Default for TxStreamFormatEntry
impl Default for TxStreamFormatEntry
source§fn default() -> TxStreamFormatEntry
fn default() -> TxStreamFormatEntry
Returns the “default value” for a type. Read more
source§impl PartialEq for TxStreamFormatEntry
impl PartialEq for TxStreamFormatEntry
source§fn eq(&self, other: &TxStreamFormatEntry) -> bool
fn eq(&self, other: &TxStreamFormatEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TxStreamFormatEntry
impl StructuralEq for TxStreamFormatEntry
impl StructuralPartialEq for TxStreamFormatEntry
Auto Trait Implementations§
impl RefUnwindSafe for TxStreamFormatEntry
impl Send for TxStreamFormatEntry
impl Sync for TxStreamFormatEntry
impl Unpin for TxStreamFormatEntry
impl UnwindSafe for TxStreamFormatEntry
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