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