#[non_exhaustive]#[repr(u32)]pub enum StdVideoDecodeH264FieldOrderCount {
STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_TOP = 0,
STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_BOTTOM = 1,
STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_INVALID = 2_147_483_647,
}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.
STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_TOP = 0
STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_BOTTOM = 1
STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_INVALID = 2_147_483_647
Implementations§
Source§impl StdVideoDecodeH264FieldOrderCount
impl StdVideoDecodeH264FieldOrderCount
pub const STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_MAX_ENUM: StdVideoDecodeH264FieldOrderCount = StdVideoDecodeH264FieldOrderCount::STD_VIDEO_DECODE_H264_FIELD_ORDER_COUNT_INVALID
Trait Implementations§
Source§impl Clone for StdVideoDecodeH264FieldOrderCount
impl Clone for StdVideoDecodeH264FieldOrderCount
Source§fn clone(&self) -> StdVideoDecodeH264FieldOrderCount
fn clone(&self) -> StdVideoDecodeH264FieldOrderCount
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 PartialEq for StdVideoDecodeH264FieldOrderCount
impl PartialEq for StdVideoDecodeH264FieldOrderCount
Source§fn eq(&self, other: &StdVideoDecodeH264FieldOrderCount) -> bool
fn eq(&self, other: &StdVideoDecodeH264FieldOrderCount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StdVideoDecodeH264FieldOrderCount
impl Eq for StdVideoDecodeH264FieldOrderCount
impl StructuralPartialEq for StdVideoDecodeH264FieldOrderCount
Auto Trait Implementations§
impl Freeze for StdVideoDecodeH264FieldOrderCount
impl RefUnwindSafe for StdVideoDecodeH264FieldOrderCount
impl Send for StdVideoDecodeH264FieldOrderCount
impl Sync for StdVideoDecodeH264FieldOrderCount
impl Unpin for StdVideoDecodeH264FieldOrderCount
impl UnwindSafe for StdVideoDecodeH264FieldOrderCount
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