[][src]Struct ash::vk::DependencyFlags

#[repr(transparent)]pub struct DependencyFlags(_);

Implementations

impl DependencyFlags[src]

pub const fn empty() -> DependencyFlags[src]

pub const fn all() -> DependencyFlags[src]

pub const fn from_raw(x: Flags) -> Self[src]

pub const fn as_raw(self) -> Flags[src]

pub fn is_empty(self) -> bool[src]

pub fn is_all(self) -> bool[src]

pub fn intersects(self, other: DependencyFlags) -> bool[src]

pub fn contains(self, other: DependencyFlags) -> bool[src]

Returns whether other is a subset of self

impl DependencyFlags[src]

pub const BY_REGION: Self[src]

Dependency is per pixel region

impl DependencyFlags[src]

Generated from 'VK_KHR_multiview'

pub const VIEW_LOCAL_KHR: Self[src]

impl DependencyFlags[src]

Generated from 'VK_KHR_device_group'

pub const DEVICE_GROUP_KHR: Self[src]

impl DependencyFlags[src]

Generated from 'VK_VERSION_1_1'

pub const DEVICE_GROUP: Self[src]

impl DependencyFlags[src]

Generated from 'VK_VERSION_1_1'

pub const VIEW_LOCAL: Self[src]

Trait Implementations

impl BitAnd<DependencyFlags> for DependencyFlags[src]

type Output = DependencyFlags

The resulting type after applying the & operator.

impl BitAndAssign<DependencyFlags> for DependencyFlags[src]

impl BitOr<DependencyFlags> for DependencyFlags[src]

type Output = DependencyFlags

The resulting type after applying the | operator.

impl BitOrAssign<DependencyFlags> for DependencyFlags[src]

impl BitXor<DependencyFlags> for DependencyFlags[src]

type Output = DependencyFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<DependencyFlags> for DependencyFlags[src]

impl Clone for DependencyFlags[src]

impl Copy for DependencyFlags[src]

impl Debug for DependencyFlags[src]

impl Default for DependencyFlags[src]

impl Eq for DependencyFlags[src]

impl Hash for DependencyFlags[src]

impl Not for DependencyFlags[src]

type Output = DependencyFlags

The resulting type after applying the ! operator.

impl Ord for DependencyFlags[src]

impl PartialEq<DependencyFlags> for DependencyFlags[src]

impl PartialOrd<DependencyFlags> for DependencyFlags[src]

impl StructuralEq for DependencyFlags[src]

impl StructuralPartialEq for DependencyFlags[src]

impl Sub<DependencyFlags> for DependencyFlags[src]

type Output = DependencyFlags

The resulting type after applying the - operator.

impl SubAssign<DependencyFlags> for DependencyFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.