pub struct IdentificationHeader {
pub version: u8,
pub channel_count: u8,
pub pre_skip: u16,
pub input_sample_rate: u32,
pub output_gain: i16,
pub channel_mapping_family: u8,
pub channel_mapping_table: Option<ChannelMappingTable>,
}
Expand description
The identification header.
Fields§
§version: u8
§channel_count: u8
§pre_skip: u16
§input_sample_rate: u32
§output_gain: i16
§channel_mapping_family: u8
§channel_mapping_table: Option<ChannelMappingTable>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IdentificationHeader
impl RefUnwindSafe for IdentificationHeader
impl Send for IdentificationHeader
impl Sync for IdentificationHeader
impl Unpin for IdentificationHeader
impl UnwindSafe for IdentificationHeader
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