pub enum BcoCompoundAm824StreamFormat {
Iec60958_3,
Iec61937_3,
Iec61937_4,
Iec61937_5,
Iec61937_6,
Iec61937_7,
MultiBitLinearAudioRaw,
MultiBitLinearAudioDvd,
HighPrecisionMultiBitLinearAudio,
MidiConformant,
Reserved(u8),
}
Expand description
Format of compound AM824 stream.
Variants§
Iec60958_3
For IEC 60958-3.
Iec61937_3
For IEC 61937-3.
Iec61937_4
For IEC 61937-4.
Iec61937_5
For IEC 61937-5.
Iec61937_6
For IEC 61937-6.
Iec61937_7
For IEC 61937-7.
MultiBitLinearAudioRaw
For multi bit linear audio (raw).
MultiBitLinearAudioDvd
For multi bit linear audio (DVD-Audio).
HighPrecisionMultiBitLinearAudio
For high precision multi bit linear audio.
MidiConformant
For MIDI conformant (MMA/AMEI RP-027).
Reserved(u8)
Trait Implementations§
Source§impl Clone for BcoCompoundAm824StreamFormat
impl Clone for BcoCompoundAm824StreamFormat
Source§fn clone(&self) -> BcoCompoundAm824StreamFormat
fn clone(&self) -> BcoCompoundAm824StreamFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BcoCompoundAm824StreamFormat
impl Debug for BcoCompoundAm824StreamFormat
Source§impl PartialEq for BcoCompoundAm824StreamFormat
impl PartialEq for BcoCompoundAm824StreamFormat
Source§fn eq(&self, other: &BcoCompoundAm824StreamFormat) -> bool
fn eq(&self, other: &BcoCompoundAm824StreamFormat) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for BcoCompoundAm824StreamFormat
impl Eq for BcoCompoundAm824StreamFormat
impl StructuralPartialEq for BcoCompoundAm824StreamFormat
Auto Trait Implementations§
impl Freeze for BcoCompoundAm824StreamFormat
impl RefUnwindSafe for BcoCompoundAm824StreamFormat
impl Send for BcoCompoundAm824StreamFormat
impl Sync for BcoCompoundAm824StreamFormat
impl Unpin for BcoCompoundAm824StreamFormat
impl UnwindSafe for BcoCompoundAm824StreamFormat
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