#[non_exhaustive]#[repr(u32)]pub enum Vp9ResetFrameCtx {
None = 0,
Spec = 1,
All = 2,
}
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§
Source§impl AsRef<u32> for Vp9ResetFrameCtx
impl AsRef<u32> for Vp9ResetFrameCtx
Source§impl Clone for Vp9ResetFrameCtx
impl Clone for Vp9ResetFrameCtx
Source§fn clone(&self) -> Vp9ResetFrameCtx
fn clone(&self) -> Vp9ResetFrameCtx
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 Vp9ResetFrameCtx
impl Debug for Vp9ResetFrameCtx
Source§impl Deref for Vp9ResetFrameCtx
impl Deref for Vp9ResetFrameCtx
Source§impl Display for Vp9ResetFrameCtx
impl Display for Vp9ResetFrameCtx
Source§impl From<Vp9ResetFrameCtx> for u32
impl From<Vp9ResetFrameCtx> for u32
Source§fn from(data: Vp9ResetFrameCtx) -> Self
fn from(data: Vp9ResetFrameCtx) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Vp9ResetFrameCtx
impl PartialEq for Vp9ResetFrameCtx
Source§impl TryFrom<u32> for Vp9ResetFrameCtx
impl TryFrom<u32> for Vp9ResetFrameCtx
impl Copy for Vp9ResetFrameCtx
impl Eq for Vp9ResetFrameCtx
impl StructuralPartialEq for Vp9ResetFrameCtx
Auto Trait Implementations§
impl Freeze for Vp9ResetFrameCtx
impl RefUnwindSafe for Vp9ResetFrameCtx
impl Send for Vp9ResetFrameCtx
impl Sync for Vp9ResetFrameCtx
impl Unpin for Vp9ResetFrameCtx
impl UnwindSafe for Vp9ResetFrameCtx
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