[][src]Struct bedrock::QueueFlags

pub struct QueueFlags(_);

Set of bit of queue flags

Methods

impl QueueFlags[src]

pub const EMPTY: Self[src]

Empty bits

pub const GRAPHICS: Self[src]

Supports only graphics operations

pub const COMPUTE: Self[src]

Supports only compute operations

pub const TRANSFER: Self[src]

Supports only transfer operations

pub const SPARSE_BINDING: Self[src]

Supports only sparse memory management operations

pub const fn graphics(self) -> Self[src]

Supports graphics operations

pub const fn compute(self) -> Self[src]

Supports compute operations

pub const fn transfer(self) -> Self[src]

Supports transfer operations

pub const fn sparse_binding(self) -> Self[src]

Supports sparse memory management operatinons

pub const fn bits(self) -> VkQueueFlags[src]

Trait Implementations

impl Clone for QueueFlags[src]

impl Copy for QueueFlags[src]

impl Debug for QueueFlags[src]

impl Eq for QueueFlags[src]

impl PartialEq<QueueFlags> for QueueFlags[src]

impl StructuralEq for QueueFlags[src]

impl StructuralPartialEq for QueueFlags[src]

Auto Trait Implementations

impl RefUnwindSafe for QueueFlags

impl Send for QueueFlags

impl Sync for QueueFlags

impl Unpin for QueueFlags

impl UnwindSafe for QueueFlags

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.