Struct screen_13::prelude::vk::RenderingFlags
source · pub struct RenderingFlags(_);Expand description
Implementations§
source§impl RenderingFlags
impl RenderingFlags
pub const fn empty() -> RenderingFlags
pub const fn from_raw(x: u32) -> RenderingFlags
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: RenderingFlags) -> bool
sourcepub const fn contains(self, other: RenderingFlags) -> bool
pub const fn contains(self, other: RenderingFlags) -> bool
Returns whether other is a subset of self
source§impl RenderingFlags
impl RenderingFlags
pub const CONTENTS_SECONDARY_COMMAND_BUFFERS: RenderingFlags = Self(1)
pub const CONTENTS_SECONDARY_COMMAND_BUFFERS_KHR: RenderingFlags = Self::CONTENTS_SECONDARY_COMMAND_BUFFERS
pub const SUSPENDING: RenderingFlags = Self(2)
pub const SUSPENDING_KHR: RenderingFlags = Self::SUSPENDING
pub const RESUMING: RenderingFlags = Self(4)
pub const RESUMING_KHR: RenderingFlags = Self::RESUMING
source§impl RenderingFlags
impl RenderingFlags
Generated from ‘VK_EXT_legacy_dithering’
pub const ENABLE_LEGACY_DITHERING_EXT: RenderingFlags = Self(8)
Trait Implementations§
source§impl BitAnd<RenderingFlags> for RenderingFlags
impl BitAnd<RenderingFlags> for RenderingFlags
§type Output = RenderingFlags
type Output = RenderingFlags
The resulting type after applying the
& operator.source§fn bitand(self, rhs: RenderingFlags) -> RenderingFlags
fn bitand(self, rhs: RenderingFlags) -> RenderingFlags
Performs the
& operation. Read moresource§impl BitAndAssign<RenderingFlags> for RenderingFlags
impl BitAndAssign<RenderingFlags> for RenderingFlags
source§fn bitand_assign(&mut self, rhs: RenderingFlags)
fn bitand_assign(&mut self, rhs: RenderingFlags)
Performs the
&= operation. Read moresource§impl BitOr<RenderingFlags> for RenderingFlags
impl BitOr<RenderingFlags> for RenderingFlags
§type Output = RenderingFlags
type Output = RenderingFlags
The resulting type after applying the
| operator.source§fn bitor(self, rhs: RenderingFlags) -> RenderingFlags
fn bitor(self, rhs: RenderingFlags) -> RenderingFlags
Performs the
| operation. Read moresource§impl BitOrAssign<RenderingFlags> for RenderingFlags
impl BitOrAssign<RenderingFlags> for RenderingFlags
source§fn bitor_assign(&mut self, rhs: RenderingFlags)
fn bitor_assign(&mut self, rhs: RenderingFlags)
Performs the
|= operation. Read moresource§impl BitXor<RenderingFlags> for RenderingFlags
impl BitXor<RenderingFlags> for RenderingFlags
§type Output = RenderingFlags
type Output = RenderingFlags
The resulting type after applying the
^ operator.source§fn bitxor(self, rhs: RenderingFlags) -> RenderingFlags
fn bitxor(self, rhs: RenderingFlags) -> RenderingFlags
Performs the
^ operation. Read moresource§impl BitXorAssign<RenderingFlags> for RenderingFlags
impl BitXorAssign<RenderingFlags> for RenderingFlags
source§fn bitxor_assign(&mut self, rhs: RenderingFlags)
fn bitxor_assign(&mut self, rhs: RenderingFlags)
Performs the
^= operation. Read moresource§impl Clone for RenderingFlags
impl Clone for RenderingFlags
source§fn clone(&self) -> RenderingFlags
fn clone(&self) -> RenderingFlags
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 RenderingFlags
impl Debug for RenderingFlags
source§impl Default for RenderingFlags
impl Default for RenderingFlags
source§fn default() -> RenderingFlags
fn default() -> RenderingFlags
Returns the “default value” for a type. Read more
source§impl Hash for RenderingFlags
impl Hash for RenderingFlags
source§impl Not for RenderingFlags
impl Not for RenderingFlags
§type Output = RenderingFlags
type Output = RenderingFlags
The resulting type after applying the
! operator.source§fn not(self) -> RenderingFlags
fn not(self) -> RenderingFlags
Performs the unary
! operation. Read moresource§impl Ord for RenderingFlags
impl Ord for RenderingFlags
source§fn cmp(&self, other: &RenderingFlags) -> Ordering
fn cmp(&self, other: &RenderingFlags) -> 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<RenderingFlags> for RenderingFlags
impl PartialEq<RenderingFlags> for RenderingFlags
source§fn eq(&self, other: &RenderingFlags) -> bool
fn eq(&self, other: &RenderingFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<RenderingFlags> for RenderingFlags
impl PartialOrd<RenderingFlags> for RenderingFlags
source§fn partial_cmp(&self, other: &RenderingFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &RenderingFlags) -> 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 more