Enum libpulse_sys::format::pa_encoding_t[][src]

#[repr(C)]
#[non_exhaustive]pub enum pa_encoding_t {
    Any,
    PCM,
    AC3_IEC61937,
    EAC3_IEC61937,
    MPEG_IEC61937,
    DTS_IEC61937,
    MPEG2_AAC_IEC61937,
    TRUEHD_IEC61937,
    DTSHD_IEC61937,
    Invalid,
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Any
PCM
AC3_IEC61937
EAC3_IEC61937
MPEG_IEC61937
DTS_IEC61937
MPEG2_AAC_IEC61937
TRUEHD_IEC61937
This is supported on crate feature pa_v13 only.
DTSHD_IEC61937
This is supported on crate feature pa_v13 only.
Invalid

Trait Implementations

impl Clone for pa_encoding_t[src]

impl Copy for pa_encoding_t[src]

impl Debug for pa_encoding_t[src]

impl Default for pa_encoding_t[src]

impl Eq for pa_encoding_t[src]

impl FromPrimitive for pa_encoding_t[src]

impl PartialEq<pa_encoding_t> for pa_encoding_t[src]

impl StructuralEq for pa_encoding_t[src]

impl StructuralPartialEq for pa_encoding_t[src]

impl ToPrimitive for pa_encoding_t[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.