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