Struct ash::vk::DebugReportCallbackCreateInfoEXTBuilder
source · pub struct DebugReportCallbackCreateInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> DebugReportCallbackCreateInfoEXTBuilder<'a>
pub fn flags(self, flags: DebugReportFlagsEXT) -> Self
pub fn pfn_callback(self, pfn_callback: PFN_vkDebugReportCallbackEXT) -> Self
pub fn user_data(self, user_data: *mut c_void) -> Self
sourcepub fn build(self) -> DebugReportCallbackCreateInfoEXT
pub fn build(self) -> DebugReportCallbackCreateInfoEXT
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 DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> Deref for DebugReportCallbackCreateInfoEXTBuilder<'a>
source§impl<'a> DerefMut for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> DerefMut for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl ExtendsInstanceCreateInfo for DebugReportCallbackCreateInfoEXTBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> RefUnwindSafe for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> !Send for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> !Sync for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> Unpin for DebugReportCallbackCreateInfoEXTBuilder<'a>
impl<'a> UnwindSafe for DebugReportCallbackCreateInfoEXTBuilder<'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