pub enum AudioEncoder {
AAC,
Opus,
Custom(ObsAudioEncoderType),
}Expand description
Audio encoder configuration
Variants§
AAC
AAC audio encoder (ffmpeg)
Opus
Opus audio encoder
Custom(ObsAudioEncoderType)
Custom audio encoder by type
Trait Implementations§
Source§impl Clone for AudioEncoder
impl Clone for AudioEncoder
Source§fn clone(&self) -> AudioEncoder
fn clone(&self) -> AudioEncoder
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 moreAuto Trait Implementations§
impl Freeze for AudioEncoder
impl RefUnwindSafe for AudioEncoder
impl Send for AudioEncoder
impl Sync for AudioEncoder
impl Unpin for AudioEncoder
impl UnsafeUnpin for AudioEncoder
impl UnwindSafe for AudioEncoder
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