#[repr(u32)]pub enum Vp9CodingMode {
Lossy = 0,
Lossless = 1,
}Expand description
Defines the VP9 encoder coding mode (lossy or lossless).
Variants§
Lossy = 0
The encoder operates in lossy (default) mode.
Lossless = 1
The encoder operates in lossless mode.
Trait Implementations§
Source§impl Clone for Vp9CodingMode
impl Clone for Vp9CodingMode
Source§fn clone(&self) -> Vp9CodingMode
fn clone(&self) -> Vp9CodingMode
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 Vp9CodingMode
impl Debug for Vp9CodingMode
Source§impl Default for Vp9CodingMode
impl Default for Vp9CodingMode
Source§fn default() -> Vp9CodingMode
fn default() -> Vp9CodingMode
Returns the “default value” for a type. Read more
Source§impl Hash for Vp9CodingMode
impl Hash for Vp9CodingMode
Source§impl Ord for Vp9CodingMode
impl Ord for Vp9CodingMode
Source§fn cmp(&self, other: &Vp9CodingMode) -> Ordering
fn cmp(&self, other: &Vp9CodingMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Vp9CodingMode
impl PartialEq for Vp9CodingMode
Source§impl PartialOrd for Vp9CodingMode
impl PartialOrd for Vp9CodingMode
impl Copy for Vp9CodingMode
impl Eq for Vp9CodingMode
impl StructuralPartialEq for Vp9CodingMode
Auto Trait Implementations§
impl Freeze for Vp9CodingMode
impl RefUnwindSafe for Vp9CodingMode
impl Send for Vp9CodingMode
impl Sync for Vp9CodingMode
impl Unpin for Vp9CodingMode
impl UnwindSafe for Vp9CodingMode
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