[][src]Struct alto::LoopbackAttrs

pub struct LoopbackAttrs {
    pub mono_sources: Option<ALCint>,
    pub stereo_sources: Option<ALCint>,
    pub soft_hrtf: Option<bool>,
    pub soft_hrtf_id: Option<ALCint>,
    pub soft_output_limiter: Option<bool>,
    pub max_aux_sends: Option<ALCint>,
}

Attributes that may be supplied during context creation from a loopback device. Requires ALC_SOFT_loopback

Fields

mono_sources: Option<ALCint>

ALC_MONO_SOURCES

stereo_sources: Option<ALCint>

ALC_STEREO_SOURCES

soft_hrtf: Option<bool>

ALC_HRTF_SOFT Requires ALC_SOFT_HRTF

soft_hrtf_id: Option<ALCint>

ALC_HRTF_ID_SOFT Requires ALC_SOFT_HRTF

soft_output_limiter: Option<bool>

ALC_OUTPUT_LIMITER_SOFT Requires ALC_SOFT_output_limiter

max_aux_sends: Option<ALCint>

ALC_MAX_AUXILIARY_SENDS Requires ALC_EXT_EFX

Trait Implementations

impl Copy for LoopbackAttrs[src]

impl PartialEq<LoopbackAttrs> for LoopbackAttrs[src]

impl Clone for LoopbackAttrs[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for LoopbackAttrs[src]

impl Eq for LoopbackAttrs[src]

impl Debug for LoopbackAttrs[src]

impl Hash for LoopbackAttrs[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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

impl<T> Erased for T