#[non_exhaustive]#[repr(u32)]pub enum StdVideoH264PocType {
STD_VIDEO_H264_POC_TYPE_0 = 0,
STD_VIDEO_H264_POC_TYPE_1 = 1,
STD_VIDEO_H264_POC_TYPE_2 = 2,
STD_VIDEO_H264_POC_TYPE_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_H264_POC_TYPE_0 = 0
STD_VIDEO_H264_POC_TYPE_1 = 1
STD_VIDEO_H264_POC_TYPE_2 = 2
STD_VIDEO_H264_POC_TYPE_INVALID = 2_147_483_647
Implementations§
Source§impl StdVideoH264PocType
impl StdVideoH264PocType
pub const STD_VIDEO_H264_POC_TYPE_MAX_ENUM: StdVideoH264PocType = StdVideoH264PocType::STD_VIDEO_H264_POC_TYPE_INVALID
Trait Implementations§
Source§impl Clone for StdVideoH264PocType
impl Clone for StdVideoH264PocType
Source§fn clone(&self) -> StdVideoH264PocType
fn clone(&self) -> StdVideoH264PocType
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 StdVideoH264PocType
impl Debug for StdVideoH264PocType
Source§impl Hash for StdVideoH264PocType
impl Hash for StdVideoH264PocType
Source§impl PartialEq for StdVideoH264PocType
impl PartialEq for StdVideoH264PocType
impl Copy for StdVideoH264PocType
impl Eq for StdVideoH264PocType
impl StructuralPartialEq for StdVideoH264PocType
Auto Trait Implementations§
impl Freeze for StdVideoH264PocType
impl RefUnwindSafe for StdVideoH264PocType
impl Send for StdVideoH264PocType
impl Sync for StdVideoH264PocType
impl Unpin for StdVideoH264PocType
impl UnwindSafe for StdVideoH264PocType
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