pub struct ChannelMap {
pub channels: u8,
pub positions: Vec<ChannelPosition>,
}Expand description
Channel map for audio channels
Fields§
§channels: u8Number of channels
positions: Vec<ChannelPosition>Channel positions
Trait Implementations§
Source§impl Clone for ChannelMap
impl Clone for ChannelMap
Source§fn clone(&self) -> ChannelMap
fn clone(&self) -> ChannelMap
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 ChannelMap
impl Debug for ChannelMap
Source§impl PartialEq for ChannelMap
impl PartialEq for ChannelMap
impl StructuralPartialEq for ChannelMap
Auto Trait Implementations§
impl Freeze for ChannelMap
impl RefUnwindSafe for ChannelMap
impl Send for ChannelMap
impl Sync for ChannelMap
impl Unpin for ChannelMap
impl UnsafeUnpin for ChannelMap
impl UnwindSafe for ChannelMap
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