#[repr(transparent)]pub struct DependencyFlags(_);Expand description
Implementations
sourceimpl 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
sourceimpl DependencyFlags
impl DependencyFlags
sourcepub const BY_REGION: DependencyFlags = Self(1)
pub const BY_REGION: DependencyFlags = Self(1)
Dependency is per pixel region
sourceimpl DependencyFlags
impl DependencyFlags
Generated from ‘VK_KHR_multiview’
pub const VIEW_LOCAL_KHR: DependencyFlags = Self::VIEW_LOCAL
sourceimpl DependencyFlags
impl DependencyFlags
Generated from ‘VK_KHR_device_group’
pub const DEVICE_GROUP_KHR: DependencyFlags = Self::DEVICE_GROUP
sourceimpl 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
sourceimpl BitAnd<DependencyFlags> for DependencyFlags
impl BitAnd<DependencyFlags> for DependencyFlags
type Output = DependencyFlags
type Output = DependencyFlags
The resulting type after applying the & operator.
sourcefn bitand(self, rhs: DependencyFlags) -> DependencyFlags
fn bitand(self, rhs: DependencyFlags) -> DependencyFlags
Performs the & operation. Read more
sourceimpl BitAndAssign<DependencyFlags> for DependencyFlags
impl BitAndAssign<DependencyFlags> for DependencyFlags
sourcefn bitand_assign(&mut self, rhs: DependencyFlags)
fn bitand_assign(&mut self, rhs: DependencyFlags)
Performs the &= operation. Read more
sourceimpl BitOr<DependencyFlags> for DependencyFlags
impl BitOr<DependencyFlags> for DependencyFlags
type Output = DependencyFlags
type Output = DependencyFlags
The resulting type after applying the | operator.
sourcefn bitor(self, rhs: DependencyFlags) -> DependencyFlags
fn bitor(self, rhs: DependencyFlags) -> DependencyFlags
Performs the | operation. Read more
sourceimpl BitOrAssign<DependencyFlags> for DependencyFlags
impl BitOrAssign<DependencyFlags> for DependencyFlags
sourcefn bitor_assign(&mut self, rhs: DependencyFlags)
fn bitor_assign(&mut self, rhs: DependencyFlags)
Performs the |= operation. Read more
sourceimpl BitXor<DependencyFlags> for DependencyFlags
impl BitXor<DependencyFlags> for DependencyFlags
type Output = DependencyFlags
type Output = DependencyFlags
The resulting type after applying the ^ operator.
sourcefn bitxor(self, rhs: DependencyFlags) -> DependencyFlags
fn bitxor(self, rhs: DependencyFlags) -> DependencyFlags
Performs the ^ operation. Read more
sourceimpl BitXorAssign<DependencyFlags> for DependencyFlags
impl BitXorAssign<DependencyFlags> for DependencyFlags
sourcefn bitxor_assign(&mut self, rhs: DependencyFlags)
fn bitxor_assign(&mut self, rhs: DependencyFlags)
Performs the ^= operation. Read more
sourceimpl Clone for DependencyFlags
impl Clone for DependencyFlags
sourcefn clone(&self) -> DependencyFlags
fn clone(&self) -> DependencyFlags
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 more
sourceimpl Debug for DependencyFlags
impl Debug for DependencyFlags
sourceimpl Default for DependencyFlags
impl Default for DependencyFlags
sourcefn default() -> DependencyFlags
fn default() -> DependencyFlags
Returns the “default value” for a type. Read more
sourceimpl Hash for DependencyFlags
impl Hash for DependencyFlags
sourceimpl Not for DependencyFlags
impl Not for DependencyFlags
type Output = DependencyFlags
type Output = DependencyFlags
The resulting type after applying the ! operator.
sourcefn not(self) -> DependencyFlags
fn not(self) -> DependencyFlags
Performs the unary ! operation. Read more
sourceimpl Ord for DependencyFlags
impl Ord for DependencyFlags
sourceimpl PartialEq<DependencyFlags> for DependencyFlags
impl PartialEq<DependencyFlags> for DependencyFlags
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &DependencyFlags) -> bool
fn ne(&self, other: &DependencyFlags) -> bool
This method tests for !=.
sourceimpl PartialOrd<DependencyFlags> for DependencyFlags
impl PartialOrd<DependencyFlags> for DependencyFlags
sourcefn partial_cmp(&self, other: &DependencyFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &DependencyFlags) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
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 more
impl Copy for DependencyFlags
impl Eq for DependencyFlags
impl StructuralEq for DependencyFlags
impl StructuralPartialEq for DependencyFlags
Auto Trait Implementations
impl RefUnwindSafe for DependencyFlags
impl Send for DependencyFlags
impl Sync for DependencyFlags
impl Unpin for DependencyFlags
impl UnwindSafe for DependencyFlags
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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