#[non_exhaustive]#[repr(u32)]pub enum Vp9TxMode {
Only4x4 = 0,
Allow8x8 = 1,
Allow16x16 = 2,
Allow32x32 = 3,
Select = 4,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for Vp9TxMode
impl Eq for Vp9TxMode
impl StructuralPartialEq for Vp9TxMode
Auto Trait Implementations§
impl Freeze for Vp9TxMode
impl RefUnwindSafe for Vp9TxMode
impl Send for Vp9TxMode
impl Sync for Vp9TxMode
impl Unpin for Vp9TxMode
impl UnwindSafe for Vp9TxMode
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