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