pub enum LatencyCategory {
Balanced,
Interactive,
Playback,
}
Expand description
Identify the type of playback, which affects tradeoffs between audio output and power consumption.
Variants§
Balanced
Balance audio output latency and power consumption.
Interactive
Provide the lowest audio output latency possible without glitching.
Playback
Prioritize sustained playback without interruption over audio output latency. Lowest power consumption.
Trait Implementations§
source§impl Clone for LatencyCategory
impl Clone for LatencyCategory
source§fn clone(&self) -> LatencyCategory
fn clone(&self) -> LatencyCategory
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 moreimpl Copy for LatencyCategory
Auto Trait Implementations§
impl Freeze for LatencyCategory
impl RefUnwindSafe for LatencyCategory
impl Send for LatencyCategory
impl Sync for LatencyCategory
impl Unpin for LatencyCategory
impl UnwindSafe for LatencyCategory
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