Struct linux_video_core::Vp9FrameFlag
source · #[repr(transparent)]pub struct Vp9FrameFlag { /* private fields */ }
Implementations§
source§impl Vp9FrameFlag
impl Vp9FrameFlag
pub const KeyFrame: Vp9FrameFlag = _
pub const ShowFrame: Vp9FrameFlag = _
pub const ErrorResilient: Vp9FrameFlag = _
pub const IntraOnly: Vp9FrameFlag = _
pub const AllowHighPrecMv: Vp9FrameFlag = _
pub const RefreshFrameCtx: Vp9FrameFlag = _
pub const ParallelDecMode: Vp9FrameFlag = _
pub const XSubsampling: Vp9FrameFlag = _
pub const YSubsampling: Vp9FrameFlag = _
pub const ColorRangeFullSwing: Vp9FrameFlag = _
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 Vp9FrameFlag
impl Binary for Vp9FrameFlag
source§impl BitAnd<Vp9FrameFlag> for Vp9FrameFlag
impl BitAnd<Vp9FrameFlag> for Vp9FrameFlag
source§impl BitAndAssign<Vp9FrameFlag> for Vp9FrameFlag
impl BitAndAssign<Vp9FrameFlag> for Vp9FrameFlag
source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moresource§impl BitOr<Vp9FrameFlag> for Vp9FrameFlag
impl BitOr<Vp9FrameFlag> for Vp9FrameFlag
source§impl BitOrAssign<Vp9FrameFlag> for Vp9FrameFlag
impl BitOrAssign<Vp9FrameFlag> for Vp9FrameFlag
source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moresource§impl BitXor<Vp9FrameFlag> for Vp9FrameFlag
impl BitXor<Vp9FrameFlag> for Vp9FrameFlag
source§impl BitXorAssign<Vp9FrameFlag> for Vp9FrameFlag
impl BitXorAssign<Vp9FrameFlag> for Vp9FrameFlag
source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moresource§impl Clone for Vp9FrameFlag
impl Clone for Vp9FrameFlag
source§fn clone(&self) -> Vp9FrameFlag
fn clone(&self) -> Vp9FrameFlag
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 Vp9FrameFlag
impl Debug for Vp9FrameFlag
source§impl Display for Vp9FrameFlag
impl Display for Vp9FrameFlag
source§impl From<Vp9FrameFlag> for u32
impl From<Vp9FrameFlag> for u32
source§fn from(val: Vp9FrameFlag) -> u32
fn from(val: Vp9FrameFlag) -> u32
Converts to this type from the input type.
source§impl From<u32> for Vp9FrameFlag
impl From<u32> for Vp9FrameFlag
source§impl Hash for Vp9FrameFlag
impl Hash for Vp9FrameFlag
source§impl LowerHex for Vp9FrameFlag
impl LowerHex for Vp9FrameFlag
source§impl Not for Vp9FrameFlag
impl Not for Vp9FrameFlag
source§impl Octal for Vp9FrameFlag
impl Octal for Vp9FrameFlag
source§impl Ord for Vp9FrameFlag
impl Ord for Vp9FrameFlag
source§fn cmp(&self, other: &Vp9FrameFlag) -> Ordering
fn cmp(&self, other: &Vp9FrameFlag) -> 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<Vp9FrameFlag> for Vp9FrameFlag
impl PartialEq<Vp9FrameFlag> for Vp9FrameFlag
source§fn eq(&self, other: &Vp9FrameFlag) -> bool
fn eq(&self, other: &Vp9FrameFlag) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<u32> for Vp9FrameFlag
impl PartialEq<u32> for Vp9FrameFlag
source§impl PartialOrd<Vp9FrameFlag> for Vp9FrameFlag
impl PartialOrd<Vp9FrameFlag> for Vp9FrameFlag
source§fn partial_cmp(&self, other: &Vp9FrameFlag) -> Option<Ordering>
fn partial_cmp(&self, other: &Vp9FrameFlag) -> 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 Vp9FrameFlag
impl UpperHex for Vp9FrameFlag
impl Copy for Vp9FrameFlag
impl Eq for Vp9FrameFlag
impl StructuralEq for Vp9FrameFlag
impl StructuralPartialEq for Vp9FrameFlag
Auto Trait Implementations§
impl RefUnwindSafe for Vp9FrameFlag
impl Send for Vp9FrameFlag
impl Sync for Vp9FrameFlag
impl Unpin for Vp9FrameFlag
impl UnwindSafe for Vp9FrameFlag
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