Struct lava::VkShaderStageFlags[][src]

pub struct VkShaderStageFlags {
    pub vertex: bool,
    pub tessellation_control: bool,
    pub tessellation_evaluation: bool,
    pub geometry: bool,
    pub fragment: bool,
    pub compute: bool,
    pub all_graphics: bool,
}

Fields

Methods

impl VkShaderStageFlags
[src]

Trait Implementations

impl Debug for VkShaderStageFlags
[src]

Formats the value using the given formatter. Read more

impl Clone for VkShaderStageFlags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for VkShaderStageFlags
[src]

impl Default for VkShaderStageFlags
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations