#[repr(u8)]pub enum ClockBoost {
Plus0_0 = 0,
Plus0_5 = 1,
Plus1_0 = 2,
Plus1_5 = 3,
}Expand description
Specifies the maximum clock boost (i.e. multiplier added to ClockMultiplier) that can be used for WMA decoding.
Variants§
Plus0_0 = 0
Do not boost the clock
Plus0_5 = 1
Clock may be boosted up to ClockMultiplier + 0.5x
Plus1_0 = 2
Clock may be boosted up to ClockMultiplier + 1.0x
Plus1_5 = 3
Clock may be boosted up to ClockMultiplier + 1.5x
Trait Implementations§
Source§impl Clone for ClockBoost
impl Clone for ClockBoost
Source§fn clone(&self) -> ClockBoost
fn clone(&self) -> ClockBoost
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 ClockBoost
impl Debug for ClockBoost
Source§impl Hash for ClockBoost
impl Hash for ClockBoost
Source§impl PartialEq for ClockBoost
impl PartialEq for ClockBoost
impl Copy for ClockBoost
impl Eq for ClockBoost
impl StructuralPartialEq for ClockBoost
Auto Trait Implementations§
impl Freeze for ClockBoost
impl RefUnwindSafe for ClockBoost
impl Send for ClockBoost
impl Sync for ClockBoost
impl Unpin for ClockBoost
impl UnwindSafe for ClockBoost
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