Struct screen_13::prelude::vk::VideoDecodeCapabilityFlagsKHR
source · pub struct VideoDecodeCapabilityFlagsKHR(_);Expand description
Implementations
sourceimpl VideoDecodeCapabilityFlagsKHR
impl VideoDecodeCapabilityFlagsKHR
pub const fn empty() -> VideoDecodeCapabilityFlagsKHR
pub const fn from_raw(x: u32) -> VideoDecodeCapabilityFlagsKHR
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: VideoDecodeCapabilityFlagsKHR) -> bool
sourcepub const fn contains(self, other: VideoDecodeCapabilityFlagsKHR) -> bool
pub const fn contains(self, other: VideoDecodeCapabilityFlagsKHR) -> bool
Returns whether other is a subset of self
sourceimpl VideoDecodeCapabilityFlagsKHR
impl VideoDecodeCapabilityFlagsKHR
pub const DEFAULT: VideoDecodeCapabilityFlagsKHR = Self(0)
pub const DPB_AND_OUTPUT_COINCIDE: VideoDecodeCapabilityFlagsKHR = Self(1)
pub const DPB_AND_OUTPUT_DISTINCT: VideoDecodeCapabilityFlagsKHR = Self(2)
Trait Implementations
sourceimpl BitAnd<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl BitAnd<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
The resulting type after applying the
& operator.sourcefn bitand(
self,
rhs: VideoDecodeCapabilityFlagsKHR
) -> VideoDecodeCapabilityFlagsKHR
fn bitand(
self,
rhs: VideoDecodeCapabilityFlagsKHR
) -> VideoDecodeCapabilityFlagsKHR
Performs the
& operation. Read moresourceimpl BitAndAssign<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl BitAndAssign<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
sourcefn bitand_assign(&mut self, rhs: VideoDecodeCapabilityFlagsKHR)
fn bitand_assign(&mut self, rhs: VideoDecodeCapabilityFlagsKHR)
Performs the
&= operation. Read moresourceimpl BitOr<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl BitOr<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
The resulting type after applying the
| operator.sourcefn bitor(
self,
rhs: VideoDecodeCapabilityFlagsKHR
) -> VideoDecodeCapabilityFlagsKHR
fn bitor(
self,
rhs: VideoDecodeCapabilityFlagsKHR
) -> VideoDecodeCapabilityFlagsKHR
Performs the
| operation. Read moresourceimpl BitOrAssign<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl BitOrAssign<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
sourcefn bitor_assign(&mut self, rhs: VideoDecodeCapabilityFlagsKHR)
fn bitor_assign(&mut self, rhs: VideoDecodeCapabilityFlagsKHR)
Performs the
|= operation. Read moresourceimpl BitXor<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl BitXor<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
The resulting type after applying the
^ operator.sourcefn bitxor(
self,
rhs: VideoDecodeCapabilityFlagsKHR
) -> VideoDecodeCapabilityFlagsKHR
fn bitxor(
self,
rhs: VideoDecodeCapabilityFlagsKHR
) -> VideoDecodeCapabilityFlagsKHR
Performs the
^ operation. Read moresourceimpl BitXorAssign<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl BitXorAssign<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
sourcefn bitxor_assign(&mut self, rhs: VideoDecodeCapabilityFlagsKHR)
fn bitxor_assign(&mut self, rhs: VideoDecodeCapabilityFlagsKHR)
Performs the
^= operation. Read moresourceimpl Clone for VideoDecodeCapabilityFlagsKHR
impl Clone for VideoDecodeCapabilityFlagsKHR
sourcefn clone(&self) -> VideoDecodeCapabilityFlagsKHR
fn clone(&self) -> VideoDecodeCapabilityFlagsKHR
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for VideoDecodeCapabilityFlagsKHR
impl Debug for VideoDecodeCapabilityFlagsKHR
sourceimpl Default for VideoDecodeCapabilityFlagsKHR
impl Default for VideoDecodeCapabilityFlagsKHR
sourcefn default() -> VideoDecodeCapabilityFlagsKHR
fn default() -> VideoDecodeCapabilityFlagsKHR
Returns the “default value” for a type. Read more
sourceimpl Hash for VideoDecodeCapabilityFlagsKHR
impl Hash for VideoDecodeCapabilityFlagsKHR
sourceimpl Not for VideoDecodeCapabilityFlagsKHR
impl Not for VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
type Output = VideoDecodeCapabilityFlagsKHR
The resulting type after applying the
! operator.sourcefn not(self) -> VideoDecodeCapabilityFlagsKHR
fn not(self) -> VideoDecodeCapabilityFlagsKHR
Performs the unary
! operation. Read moresourceimpl Ord for VideoDecodeCapabilityFlagsKHR
impl Ord for VideoDecodeCapabilityFlagsKHR
sourcefn cmp(&self, other: &VideoDecodeCapabilityFlagsKHR) -> Ordering
fn cmp(&self, other: &VideoDecodeCapabilityFlagsKHR) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl PartialEq<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
sourcefn eq(&self, other: &VideoDecodeCapabilityFlagsKHR) -> bool
fn eq(&self, other: &VideoDecodeCapabilityFlagsKHR) -> bool
sourceimpl PartialOrd<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
impl PartialOrd<VideoDecodeCapabilityFlagsKHR> for VideoDecodeCapabilityFlagsKHR
sourcefn partial_cmp(&self, other: &VideoDecodeCapabilityFlagsKHR) -> Option<Ordering>
fn partial_cmp(&self, other: &VideoDecodeCapabilityFlagsKHR) -> Option<Ordering>
1.0.0 · sourcefn 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 moreimpl Copy for VideoDecodeCapabilityFlagsKHR
impl Eq for VideoDecodeCapabilityFlagsKHR
impl StructuralEq for VideoDecodeCapabilityFlagsKHR
impl StructuralPartialEq for VideoDecodeCapabilityFlagsKHR
Auto Trait Implementations
impl RefUnwindSafe for VideoDecodeCapabilityFlagsKHR
impl Send for VideoDecodeCapabilityFlagsKHR
impl Sync for VideoDecodeCapabilityFlagsKHR
impl Unpin for VideoDecodeCapabilityFlagsKHR
impl UnwindSafe for VideoDecodeCapabilityFlagsKHR
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more