#[repr(i32)]pub enum Application {
Voip = 2_048,
Audio = 2_049,
LowDelay = 2_051,
}
Expand description
Represents possible application-types for Opus.
Variants§
Voip = 2_048
Best for most VoIP/videoconference applications where listening quality and intelligibility matter most.
Audio = 2_049
Best for broadcast/high-fidelity application where the decoded audio should be as close as possible to the input.
LowDelay = 2_051
Only use when lowest-achievable latency is what matters most.
Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
Returns a copy 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 Application
impl Debug for Application
Source§impl Hash for Application
impl Hash for Application
Source§impl PartialEq for Application
impl PartialEq for Application
Source§impl TryFrom<i32> for Application
impl TryFrom<i32> for Application
impl Copy for Application
impl Eq for Application
impl StructuralPartialEq for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
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