#[repr(C)]pub struct PipelineExecutablePropertiesKHR {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub stages: ShaderStageFlagBits,
pub name: StringArray<vulkan_rust_sys::::structs::PipelineExecutablePropertiesKHR::name::{constant#0}>,
pub description: StringArray<vulkan_rust_sys::::structs::PipelineExecutablePropertiesKHR::description::{constant#0}>,
pub subgroup_size: u32,
}Expand description
VkPipelineExecutablePropertiesKHR
Provided by VK_KHR_pipeline_executable_properties.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR.
p_next: *mut c_voidOptional, may be null.
stages: ShaderStageFlagBits§name: StringArray<vulkan_rust_sys::::structs::PipelineExecutablePropertiesKHR::name::{constant#0}>§description: StringArray<vulkan_rust_sys::::structs::PipelineExecutablePropertiesKHR::description::{constant#0}>§subgroup_size: u32Implementations§
Source§impl PipelineExecutablePropertiesKHR
impl PipelineExecutablePropertiesKHR
Sourcepub fn builder<'a>() -> PipelineExecutablePropertiesKHRBuilder<'a>
pub fn builder<'a>() -> PipelineExecutablePropertiesKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PipelineExecutablePropertiesKHR
impl Clone for PipelineExecutablePropertiesKHR
Source§fn clone(&self) -> PipelineExecutablePropertiesKHR
fn clone(&self) -> PipelineExecutablePropertiesKHR
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PipelineExecutablePropertiesKHR
impl Default for PipelineExecutablePropertiesKHR
Source§fn default() -> PipelineExecutablePropertiesKHR
fn default() -> PipelineExecutablePropertiesKHR
Returns the “default value” for a type. Read more
impl Copy for PipelineExecutablePropertiesKHR
Auto Trait Implementations§
impl Freeze for PipelineExecutablePropertiesKHR
impl RefUnwindSafe for PipelineExecutablePropertiesKHR
impl !Send for PipelineExecutablePropertiesKHR
impl !Sync for PipelineExecutablePropertiesKHR
impl Unpin for PipelineExecutablePropertiesKHR
impl UnsafeUnpin for PipelineExecutablePropertiesKHR
impl UnwindSafe for PipelineExecutablePropertiesKHR
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more