#[repr(C)]pub struct DeviceFaultInfoEXT {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub description: StringArray<{ _ }>,
pub p_address_infos: *mut DeviceFaultAddressInfoKHR,
pub p_vendor_infos: *mut DeviceFaultVendorInfoKHR,
pub p_vendor_binary_data: *mut c_void,
}Expand description
VkDeviceFaultInfoEXT
Provided by VK_EXT_device_fault.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_FAULT_INFO_EXT.
p_next: *mut c_voidOptional, may be null.
description: StringArray<{ _ }>§p_address_infos: *mut DeviceFaultAddressInfoKHROptional, may be null.
p_vendor_infos: *mut DeviceFaultVendorInfoKHROptional, may be null.
p_vendor_binary_data: *mut c_voidOptional, may be null.
Implementations§
Source§impl DeviceFaultInfoEXT
impl DeviceFaultInfoEXT
Sourcepub fn builder<'a>() -> DeviceFaultInfoEXTBuilder<'a>
pub fn builder<'a>() -> DeviceFaultInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DeviceFaultInfoEXT
impl Clone for DeviceFaultInfoEXT
Source§fn clone(&self) -> DeviceFaultInfoEXT
fn clone(&self) -> DeviceFaultInfoEXT
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 Debug for DeviceFaultInfoEXT
impl Debug for DeviceFaultInfoEXT
Source§impl Default for DeviceFaultInfoEXT
impl Default for DeviceFaultInfoEXT
impl Copy for DeviceFaultInfoEXT
Auto Trait Implementations§
impl Freeze for DeviceFaultInfoEXT
impl RefUnwindSafe for DeviceFaultInfoEXT
impl !Send for DeviceFaultInfoEXT
impl !Sync for DeviceFaultInfoEXT
impl Unpin for DeviceFaultInfoEXT
impl UnsafeUnpin for DeviceFaultInfoEXT
impl UnwindSafe for DeviceFaultInfoEXT
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