Struct ash::vk::DeviceFaultInfoEXTBuilder
source · pub struct DeviceFaultInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DeviceFaultInfoEXTBuilder<'a>
impl<'a> DeviceFaultInfoEXTBuilder<'a>
pub fn description(self, description: [c_char; 256]) -> Self
pub fn address_infos( self, address_infos: &'a mut DeviceFaultAddressInfoEXT ) -> Self
pub fn vendor_infos( self, vendor_infos: &'a mut DeviceFaultVendorInfoEXT ) -> Self
pub fn vendor_binary_data(self, vendor_binary_data: *mut c_void) -> Self
sourcepub fn build(self) -> DeviceFaultInfoEXT
pub fn build(self) -> DeviceFaultInfoEXT
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for DeviceFaultInfoEXTBuilder<'a>
impl<'a> Deref for DeviceFaultInfoEXTBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DeviceFaultInfoEXTBuilder<'a>
impl<'a> RefUnwindSafe for DeviceFaultInfoEXTBuilder<'a>
impl<'a> !Send for DeviceFaultInfoEXTBuilder<'a>
impl<'a> !Sync for DeviceFaultInfoEXTBuilder<'a>
impl<'a> Unpin for DeviceFaultInfoEXTBuilder<'a>
impl<'a> UnwindSafe for DeviceFaultInfoEXTBuilder<'a>
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