[][src]Struct lava::nvx::VkIndirectCommandsLayoutUsageFlags

pub struct VkIndirectCommandsLayoutUsageFlags {
    pub unordered_sequences: bool,
    pub sparse_sequences: bool,
    pub empty_executions: bool,
    pub indexed_sequences: bool,
}

Wrapper for VkIndirectCommandsLayoutUsageFlagBitsNVX.

Use the macro VkIndirectCommandsLayoutUsageFlags! as an alternative method to create a structure. For example, these two snippets return the same value:

VkIndirectCommandsLayoutUsageFlags!(unordered_sequences, sparse_sequences)
VkIndirectCommandsLayoutUsageFlags {
    unordered_sequences: true,
    sparse_sequences: true,
    ..VkIndirectCommandsLayoutUsageFlags::none()
}

Fields

unordered_sequences: boolsparse_sequences: boolempty_executions: boolindexed_sequences: bool

Methods

impl VkIndirectCommandsLayoutUsageFlags[src]

pub fn none() -> Self[src]

Return a structure with all flags to false.

pub fn all() -> Self[src]

Return a structure with all flags to true.

pub fn to_u32(&self) -> u32[src]

Return the numerical bit flags corresponding to the structure (as described in the Vulkan specs).

pub fn from_u32(value: u32) -> Self[src]

Create a structure corresponding to the specified numerical bit flags.

Trait Implementations

impl Clone for VkIndirectCommandsLayoutUsageFlags[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for VkIndirectCommandsLayoutUsageFlags[src]

impl Default for VkIndirectCommandsLayoutUsageFlags[src]

impl Debug for VkIndirectCommandsLayoutUsageFlags[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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