[][src]Struct ash::vk::AttachmentDescriptionFlags

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

Implementations

impl AttachmentDescriptionFlags[src]

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

pub const fn all() -> AttachmentDescriptionFlags[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: AttachmentDescriptionFlags) -> bool[src]

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

Returns whether other is a subset of self

impl AttachmentDescriptionFlags[src]

pub const MAY_ALIAS: Self[src]

The attachment may alias physical memory of another attachment in the same render pass

Trait Implementations

impl BitAnd<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

type Output = AttachmentDescriptionFlags

The resulting type after applying the & operator.

impl BitAndAssign<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

impl BitOr<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

type Output = AttachmentDescriptionFlags

The resulting type after applying the | operator.

impl BitOrAssign<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

impl BitXor<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

type Output = AttachmentDescriptionFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

impl Clone for AttachmentDescriptionFlags[src]

impl Copy for AttachmentDescriptionFlags[src]

impl Debug for AttachmentDescriptionFlags[src]

impl Default for AttachmentDescriptionFlags[src]

impl Eq for AttachmentDescriptionFlags[src]

impl Hash for AttachmentDescriptionFlags[src]

impl Not for AttachmentDescriptionFlags[src]

type Output = AttachmentDescriptionFlags

The resulting type after applying the ! operator.

impl Ord for AttachmentDescriptionFlags[src]

impl PartialEq<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

impl PartialOrd<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

impl StructuralEq for AttachmentDescriptionFlags[src]

impl StructuralPartialEq for AttachmentDescriptionFlags[src]

impl Sub<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[src]

type Output = AttachmentDescriptionFlags

The resulting type after applying the - operator.

impl SubAssign<AttachmentDescriptionFlags> for AttachmentDescriptionFlags[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.