Enum libpulse_binding::channelmap::MapDef
source · pub enum MapDef {
AIFF,
ALSA,
Aux,
WAVEEx,
OSS,
}Variants
AIFF
The mapping from RFC3551, which is based on AIFF-C.
ALSA
The default mapping used by ALSA. This mapping is probably not too useful since ALSA’s default channel mapping depends on the device string used.
Aux
Only aux channels.
WAVEEx
Microsoft’s WAVEFORMATEXTENSIBLE mapping. This mapping works as if all LSBs of dwChannelMask are set.
OSS
The default channel mapping used by OSS as defined in the OSS 4.0 API specs. This mapping is probably not too useful since the OSS API has changed in this respect and no longer knows a default channel mapping based on the number of channels.
Trait Implementations
sourceimpl Clone for pa_channel_map_def_t
impl Clone for pa_channel_map_def_t
sourcefn clone(&self) -> pa_channel_map_def_t
fn clone(&self) -> pa_channel_map_def_t
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for pa_channel_map_def_t
impl Debug for pa_channel_map_def_t
sourceimpl PartialEq<pa_channel_map_def_t> for pa_channel_map_def_t
impl PartialEq<pa_channel_map_def_t> for pa_channel_map_def_t
sourcefn eq(&self, other: &pa_channel_map_def_t) -> bool
fn eq(&self, other: &pa_channel_map_def_t) -> bool
impl Copy for pa_channel_map_def_t
impl Eq for pa_channel_map_def_t
impl StructuralEq for pa_channel_map_def_t
impl StructuralPartialEq for pa_channel_map_def_t
Auto Trait Implementations
impl RefUnwindSafe for pa_channel_map_def_t
impl Send for pa_channel_map_def_t
impl Sync for pa_channel_map_def_t
impl Unpin for pa_channel_map_def_t
impl UnwindSafe for pa_channel_map_def_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more