#[repr(C)]pub struct PipelineExecutableInternalRepresentationKHR {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub name: StringArray<{ _ }>,
pub description: StringArray<{ _ }>,
pub is_text: u32,
pub data_size: usize,
pub p_data: *mut c_void,
}Expand description
VkPipelineExecutableInternalRepresentationKHR
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_INTERNAL_REPRESENTATION_KHR.
p_next: *mut c_voidOptional, may be null.
name: StringArray<{ _ }>§description: StringArray<{ _ }>§is_text: u32§data_size: usizeLength of p_data.
p_data: *mut c_voidOptional, may be null.
Implementations§
Source§impl PipelineExecutableInternalRepresentationKHR
impl PipelineExecutableInternalRepresentationKHR
Sourcepub fn builder<'a>() -> PipelineExecutableInternalRepresentationKHRBuilder<'a>
pub fn builder<'a>() -> PipelineExecutableInternalRepresentationKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PipelineExecutableInternalRepresentationKHR
impl Clone for PipelineExecutableInternalRepresentationKHR
Source§fn clone(&self) -> PipelineExecutableInternalRepresentationKHR
fn clone(&self) -> PipelineExecutableInternalRepresentationKHR
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 moreimpl Copy for PipelineExecutableInternalRepresentationKHR
Auto Trait Implementations§
impl Freeze for PipelineExecutableInternalRepresentationKHR
impl RefUnwindSafe for PipelineExecutableInternalRepresentationKHR
impl !Send for PipelineExecutableInternalRepresentationKHR
impl !Sync for PipelineExecutableInternalRepresentationKHR
impl Unpin for PipelineExecutableInternalRepresentationKHR
impl UnsafeUnpin for PipelineExecutableInternalRepresentationKHR
impl UnwindSafe for PipelineExecutableInternalRepresentationKHR
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