Struct linux_video_core::H264DecodeParamFlag
source · #[repr(transparent)]pub struct H264DecodeParamFlag { /* private fields */ }
Implementations§
source§impl H264DecodeParamFlag
impl H264DecodeParamFlag
pub const IdrPic: H264DecodeParamFlag = _
pub const FieldPic: H264DecodeParamFlag = _
pub const BottomField: H264DecodeParamFlag = _
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
self intersects one of the other
(self & other) != 0 || other == 0
Trait Implementations§
source§impl Binary for H264DecodeParamFlag
impl Binary for H264DecodeParamFlag
source§impl BitAndAssign<H264DecodeParamFlag> for H264DecodeParamFlag
impl BitAndAssign<H264DecodeParamFlag> for H264DecodeParamFlag
source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moresource§impl BitOrAssign<H264DecodeParamFlag> for H264DecodeParamFlag
impl BitOrAssign<H264DecodeParamFlag> for H264DecodeParamFlag
source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moresource§impl BitXorAssign<H264DecodeParamFlag> for H264DecodeParamFlag
impl BitXorAssign<H264DecodeParamFlag> for H264DecodeParamFlag
source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moresource§impl Clone for H264DecodeParamFlag
impl Clone for H264DecodeParamFlag
source§fn clone(&self) -> H264DecodeParamFlag
fn clone(&self) -> H264DecodeParamFlag
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 H264DecodeParamFlag
impl Debug for H264DecodeParamFlag
source§impl Display for H264DecodeParamFlag
impl Display for H264DecodeParamFlag
source§impl From<H264DecodeParamFlag> for u32
impl From<H264DecodeParamFlag> for u32
source§fn from(val: H264DecodeParamFlag) -> u32
fn from(val: H264DecodeParamFlag) -> u32
Converts to this type from the input type.
source§impl From<u32> for H264DecodeParamFlag
impl From<u32> for H264DecodeParamFlag
source§impl Hash for H264DecodeParamFlag
impl Hash for H264DecodeParamFlag
source§impl LowerHex for H264DecodeParamFlag
impl LowerHex for H264DecodeParamFlag
source§impl Not for H264DecodeParamFlag
impl Not for H264DecodeParamFlag
source§impl Octal for H264DecodeParamFlag
impl Octal for H264DecodeParamFlag
source§impl Ord for H264DecodeParamFlag
impl Ord for H264DecodeParamFlag
source§fn cmp(&self, other: &H264DecodeParamFlag) -> Ordering
fn cmp(&self, other: &H264DecodeParamFlag) -> Ordering
1.21.0 · 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<H264DecodeParamFlag> for H264DecodeParamFlag
impl PartialEq<H264DecodeParamFlag> for H264DecodeParamFlag
source§fn eq(&self, other: &H264DecodeParamFlag) -> bool
fn eq(&self, other: &H264DecodeParamFlag) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<u32> for H264DecodeParamFlag
impl PartialEq<u32> for H264DecodeParamFlag
source§impl PartialOrd<H264DecodeParamFlag> for H264DecodeParamFlag
impl PartialOrd<H264DecodeParamFlag> for H264DecodeParamFlag
source§fn partial_cmp(&self, other: &H264DecodeParamFlag) -> Option<Ordering>
fn partial_cmp(&self, other: &H264DecodeParamFlag) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl UpperHex for H264DecodeParamFlag
impl UpperHex for H264DecodeParamFlag
impl Copy for H264DecodeParamFlag
impl Eq for H264DecodeParamFlag
impl StructuralEq for H264DecodeParamFlag
impl StructuralPartialEq for H264DecodeParamFlag
Auto Trait Implementations§
impl RefUnwindSafe for H264DecodeParamFlag
impl Send for H264DecodeParamFlag
impl Sync for H264DecodeParamFlag
impl Unpin for H264DecodeParamFlag
impl UnwindSafe for H264DecodeParamFlag
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