[][src]Struct miniaudio_sys::ma_channel_router_config

#[repr(C)]
pub struct ma_channel_router_config {
    pub channelsIn: ma_uint32,
    pub channelsOut: ma_uint32,
    pub channelMapIn: [ma_channel; 32],
    pub channelMapOut: [ma_channel; 32],
    pub mixingMode: ma_channel_mix_mode,
    pub weights: [[f32; 32]; 32],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub onReadDeinterleaved: ma_channel_router_read_deinterleaved_proc,
    pub pUserData: *mut c_void,
}

Fields

channelsIn: ma_uint32channelsOut: ma_uint32channelMapIn: [ma_channel; 32]channelMapOut: [ma_channel; 32]mixingMode: ma_channel_mix_modeweights: [[f32; 32]; 32]_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>onReadDeinterleaved: ma_channel_router_read_deinterleaved_procpUserData: *mut c_void

Methods

impl ma_channel_router_config[src]

pub fn noSSE2(&self) -> ma_bool32[src]

pub fn set_noSSE2(&mut self, val: ma_bool32)[src]

pub fn noAVX2(&self) -> ma_bool32[src]

pub fn set_noAVX2(&mut self, val: ma_bool32)[src]

pub fn noAVX512(&self) -> ma_bool32[src]

pub fn set_noAVX512(&mut self, val: ma_bool32)[src]

pub fn noNEON(&self) -> ma_bool32[src]

pub fn set_noNEON(&mut self, val: ma_bool32)[src]

pub fn new_bitfield_1(
    noSSE2: ma_bool32,
    noAVX2: ma_bool32,
    noAVX512: ma_bool32,
    noNEON: ma_bool32
) -> __BindgenBitfieldUnit<[u8; 1], u8>
[src]

Trait Implementations

impl Clone for ma_channel_router_config[src]

impl Copy for ma_channel_router_config[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.