pub enum HardwarePreset {
Speed,
Balanced,
Quality,
}Expand description
Preset for hardware encoders (NVENC, AMD, QSV)
Variants§
Speed
Prioritize encoding speed over quality
Balanced
Balance between speed and quality
Quality
Prioritize quality over speed
Implementations§
Trait Implementations§
Source§impl Clone for HardwarePreset
impl Clone for HardwarePreset
Source§fn clone(&self) -> HardwarePreset
fn clone(&self) -> HardwarePreset
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 HardwarePreset
impl Debug for HardwarePreset
impl Copy for HardwarePreset
Auto Trait Implementations§
impl Freeze for HardwarePreset
impl RefUnwindSafe for HardwarePreset
impl Send for HardwarePreset
impl Sync for HardwarePreset
impl Unpin for HardwarePreset
impl UnsafeUnpin for HardwarePreset
impl UnwindSafe for HardwarePreset
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