[][src]Struct ash::vk::QueueFlags

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

Implementations

impl QueueFlags[src]

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

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

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

Returns whether other is a subset of self

impl QueueFlags[src]

pub const GRAPHICS: Self[src]

Queue supports graphics operations

pub const COMPUTE: Self[src]

Queue supports compute operations

pub const TRANSFER: Self[src]

Queue supports transfer operations

pub const SPARSE_BINDING: Self[src]

Queue supports sparse resource memory management operations

impl QueueFlags[src]

Generated from 'VK_AMD_extension_24'

pub const RESERVED_6_KHR: Self[src]

impl QueueFlags[src]

Generated from 'VK_AMD_extension_25'

pub const RESERVED_5_KHR: Self[src]

impl QueueFlags[src]

Generated from 'VK_VERSION_1_1'

pub const PROTECTED: Self[src]

Trait Implementations

impl BitAnd<QueueFlags> for QueueFlags[src]

type Output = QueueFlags

The resulting type after applying the & operator.

impl BitAndAssign<QueueFlags> for QueueFlags[src]

impl BitOr<QueueFlags> for QueueFlags[src]

type Output = QueueFlags

The resulting type after applying the | operator.

impl BitOrAssign<QueueFlags> for QueueFlags[src]

impl BitXor<QueueFlags> for QueueFlags[src]

type Output = QueueFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<QueueFlags> for QueueFlags[src]

impl Clone for QueueFlags[src]

impl Copy for QueueFlags[src]

impl Debug for QueueFlags[src]

impl Default for QueueFlags[src]

impl Eq for QueueFlags[src]

impl Hash for QueueFlags[src]

impl Not for QueueFlags[src]

type Output = QueueFlags

The resulting type after applying the ! operator.

impl Ord for QueueFlags[src]

impl PartialEq<QueueFlags> for QueueFlags[src]

impl PartialOrd<QueueFlags> for QueueFlags[src]

impl StructuralEq for QueueFlags[src]

impl StructuralPartialEq for QueueFlags[src]

impl Sub<QueueFlags> for QueueFlags[src]

type Output = QueueFlags

The resulting type after applying the - operator.

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