#[repr(i32)]pub enum VideoH264Profile {
Show 18 variants
Baseline = 0,
ConstrainedBaseline = 1,
Main = 2,
Extended = 3,
High = 4,
High10 = 5,
High422 = 6,
High444Predictive = 7,
High10Intra = 8,
High422Intra = 9,
High444Intra = 10,
Cavlc444Intra = 11,
ScalableBaseline = 12,
ScalableHigh = 13,
ScalableHighIntra = 14,
StereoHigh = 15,
MultiviewHigh = 16,
ConstrainedHigh = 17,
}Expand description
Safe wrapper over [bindings::V4L2_CID_MPEG_VIDEO_H264_PROFILE]
Variants§
Baseline = 0
ConstrainedBaseline = 1
Main = 2
Extended = 3
High = 4
High10 = 5
High422 = 6
High444Predictive = 7
High10Intra = 8
High422Intra = 9
High444Intra = 10
Cavlc444Intra = 11
ScalableBaseline = 12
ScalableHigh = 13
ScalableHighIntra = 14
StereoHigh = 15
MultiviewHigh = 16
ConstrainedHigh = 17
Implementations§
Trait Implementations§
Source§impl Clone for VideoH264Profile
impl Clone for VideoH264Profile
Source§fn clone(&self) -> VideoH264Profile
fn clone(&self) -> VideoH264Profile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VideoH264Profile
Source§impl Debug for VideoH264Profile
impl Debug for VideoH264Profile
impl Eq for VideoH264Profile
Source§impl ExtControlTrait for VideoH264Profile
impl ExtControlTrait for VideoH264Profile
Source§impl From<VideoH264Profile> for i32
impl From<VideoH264Profile> for i32
Source§fn from(value: VideoH264Profile) -> Self
fn from(value: VideoH264Profile) -> Self
Converts to this type from the input type.
Source§impl Ord for VideoH264Profile
impl Ord for VideoH264Profile
Source§fn cmp(&self, other: &VideoH264Profile) -> Ordering
fn cmp(&self, other: &VideoH264Profile) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VideoH264Profile
impl PartialEq for VideoH264Profile
Source§fn eq(&self, other: &VideoH264Profile) -> bool
fn eq(&self, other: &VideoH264Profile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for VideoH264Profile
impl PartialOrd for VideoH264Profile
impl StructuralPartialEq for VideoH264Profile
Auto Trait Implementations§
impl Freeze for VideoH264Profile
impl RefUnwindSafe for VideoH264Profile
impl Send for VideoH264Profile
impl Sync for VideoH264Profile
impl Unpin for VideoH264Profile
impl UnsafeUnpin for VideoH264Profile
impl UnwindSafe for VideoH264Profile
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