#[non_exhaustive]#[repr(u32)]pub enum Vp9ResetFrameCtx {
None,
Spec,
All,
}
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.
Methods from Deref<Target = u32>§
pub const MIN: u32 = 0u32
pub const MAX: u32 = 4_294_967_295u32
pub const BITS: u32 = 32u32
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 copy 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<Vp9ResetFrameCtx> for Vp9ResetFrameCtx
impl PartialEq<Vp9ResetFrameCtx> for Vp9ResetFrameCtx
source§fn eq(&self, other: &Vp9ResetFrameCtx) -> bool
fn eq(&self, other: &Vp9ResetFrameCtx) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u32> for Vp9ResetFrameCtx
impl TryFrom<u32> for Vp9ResetFrameCtx
impl Copy for Vp9ResetFrameCtx
impl Eq for Vp9ResetFrameCtx
impl StructuralEq for Vp9ResetFrameCtx
impl StructuralPartialEq for Vp9ResetFrameCtx
Auto Trait Implementations§
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