#[non_exhaustive]#[repr(u32)]pub enum StdVideoH265SliceType {
STD_VIDEO_H265_SLICE_TYPE_B = 0,
STD_VIDEO_H265_SLICE_TYPE_P = 1,
STD_VIDEO_H265_SLICE_TYPE_I = 2,
STD_VIDEO_H265_SLICE_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_H265_SLICE_TYPE_B = 0
STD_VIDEO_H265_SLICE_TYPE_P = 1
STD_VIDEO_H265_SLICE_TYPE_I = 2
STD_VIDEO_H265_SLICE_TYPE_INVALID = 2_147_483_647
Implementations§
Source§impl StdVideoH265SliceType
impl StdVideoH265SliceType
pub const STD_VIDEO_H265_SLICE_TYPE_MAX_ENUM: StdVideoH265SliceType = StdVideoH265SliceType::STD_VIDEO_H265_SLICE_TYPE_INVALID
Trait Implementations§
Source§impl Clone for StdVideoH265SliceType
impl Clone for StdVideoH265SliceType
Source§fn clone(&self) -> StdVideoH265SliceType
fn clone(&self) -> StdVideoH265SliceType
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 StdVideoH265SliceType
impl Debug for StdVideoH265SliceType
Source§impl Hash for StdVideoH265SliceType
impl Hash for StdVideoH265SliceType
Source§impl PartialEq for StdVideoH265SliceType
impl PartialEq for StdVideoH265SliceType
impl Copy for StdVideoH265SliceType
impl Eq for StdVideoH265SliceType
impl StructuralPartialEq for StdVideoH265SliceType
Auto Trait Implementations§
impl Freeze for StdVideoH265SliceType
impl RefUnwindSafe for StdVideoH265SliceType
impl Send for StdVideoH265SliceType
impl Sync for StdVideoH265SliceType
impl Unpin for StdVideoH265SliceType
impl UnwindSafe for StdVideoH265SliceType
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