pub enum ObsAudioEncoderType {
FFMPEG_AAC,
FFMPEG_OPUS,
FFMPEG_PCM_S16LE,
FFMPEG_PCM_S24LE,
FFMPEG_PCM_F32LE,
FFMPEG_ALAC,
FFMPEG_FLAC,
LIBFDK_AAC,
Other(String),
}Variants§
FFMPEG_AAC
From plugin: obs-ffmpeg
FFMPEG_OPUS
From plugin: obs-ffmpeg
FFMPEG_PCM_S16LE
From plugin: obs-ffmpeg
FFMPEG_PCM_S24LE
From plugin: obs-ffmpeg
FFMPEG_PCM_F32LE
From plugin: obs-ffmpeg
FFMPEG_ALAC
From plugin: obs-ffmpeg
FFMPEG_FLAC
From plugin: obs-ffmpeg
LIBFDK_AAC
From plugin: obs-libfdk
Other(String)
Trait Implementations§
Source§impl Clone for ObsAudioEncoderType
impl Clone for ObsAudioEncoderType
Source§fn clone(&self) -> ObsAudioEncoderType
fn clone(&self) -> ObsAudioEncoderType
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 ObsAudioEncoderType
impl Debug for ObsAudioEncoderType
Source§impl From<ObsAudioEncoderType> for ObsString
impl From<ObsAudioEncoderType> for ObsString
Source§fn from(v: ObsAudioEncoderType) -> ObsString
fn from(v: ObsAudioEncoderType) -> ObsString
Converts to this type from the input type.
Source§impl FromStr for ObsAudioEncoderType
impl FromStr for ObsAudioEncoderType
Source§impl Ord for ObsAudioEncoderType
impl Ord for ObsAudioEncoderType
Source§fn cmp(&self, other: &ObsAudioEncoderType) -> Ordering
fn cmp(&self, other: &ObsAudioEncoderType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ObsAudioEncoderType
impl PartialEq for ObsAudioEncoderType
Source§impl PartialOrd for ObsAudioEncoderType
impl PartialOrd for ObsAudioEncoderType
impl Eq for ObsAudioEncoderType
impl StructuralPartialEq for ObsAudioEncoderType
Auto Trait Implementations§
impl Freeze for ObsAudioEncoderType
impl RefUnwindSafe for ObsAudioEncoderType
impl Send for ObsAudioEncoderType
impl Sync for ObsAudioEncoderType
impl Unpin for ObsAudioEncoderType
impl UnwindSafe for ObsAudioEncoderType
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