pub enum AudioSettingsSubType {
Show 21 variants
AAC,
AC3,
AACADTS,
AACHDCP,
AC3SPDIF,
AC3HDCP,
ADTS,
ALAC,
AMRNB,
AWRWB,
DTS,
EAC3,
FLAC,
Float,
MP3,
MPEG,
OPUS,
PCM,
WMA8,
WMA9,
Vorbis,
}
Expand description
The AudioSettingsSubType
enum represents the subtypes for the audio encoder.
Variantsยง
AAC
AC3
AACADTS
AACHDCP
AC3SPDIF
AC3HDCP
ADTS
ALAC
AMRNB
AWRWB
DTS
EAC3
FLAC
Float
MP3
MPEG
OPUS
PCM
WMA8
WMA9
Vorbis
Implementationsยง
Sourceยงimpl AudioSettingsSubType
impl AudioSettingsSubType
pub fn to_hstring(&self) -> HSTRING
Trait Implementationsยง
Sourceยงimpl Clone for AudioSettingsSubType
impl Clone for AudioSettingsSubType
Sourceยงfn clone(&self) -> AudioSettingsSubType
fn clone(&self) -> AudioSettingsSubType
Returns a duplicate of the value. Read more
1.0.0 ยท 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 AudioSettingsSubType
impl Debug for AudioSettingsSubType
Sourceยงimpl PartialEq for AudioSettingsSubType
impl PartialEq for AudioSettingsSubType
impl Copy for AudioSettingsSubType
impl Eq for AudioSettingsSubType
impl StructuralPartialEq for AudioSettingsSubType
Auto Trait Implementationsยง
impl Freeze for AudioSettingsSubType
impl RefUnwindSafe for AudioSettingsSubType
impl Send for AudioSettingsSubType
impl Sync for AudioSettingsSubType
impl Unpin for AudioSettingsSubType
impl UnwindSafe for AudioSettingsSubType
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more