pub enum DctMethod {
IntegerSlow,
IntegerFast,
Float,
}Expand description
Algorithm for the DCT step.
Variants§
IntegerSlow
slow but accurate integer algorithm
IntegerFast
faster, less accurate integer method
Float
floating-point method
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DctMethod
impl RefUnwindSafe for DctMethod
impl Send for DctMethod
impl Sync for DctMethod
impl Unpin for DctMethod
impl UnsafeUnpin for DctMethod
impl UnwindSafe for DctMethod
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