#[repr(C)]pub struct DebugReportCallbackCreateInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DebugReportFlagsEXT,
pub pfn_callback: PFN_vkDebugReportCallbackEXT,
pub p_user_data: *mut c_void,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT.
p_next: *const c_voidOptional, may be null.
flags: DebugReportFlagsEXT§pfn_callback: PFN_vkDebugReportCallbackEXT§p_user_data: *mut c_voidOptional, may be null.
Implementations§
Source§impl DebugReportCallbackCreateInfoEXT
impl DebugReportCallbackCreateInfoEXT
Sourcepub fn builder<'a>() -> DebugReportCallbackCreateInfoEXTBuilder<'a>
pub fn builder<'a>() -> DebugReportCallbackCreateInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DebugReportCallbackCreateInfoEXT
impl Clone for DebugReportCallbackCreateInfoEXT
Source§fn clone(&self) -> DebugReportCallbackCreateInfoEXT
fn clone(&self) -> DebugReportCallbackCreateInfoEXT
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 DebugReportCallbackCreateInfoEXT
impl ExtendsInstanceCreateInfo for DebugReportCallbackCreateInfoEXT
Auto Trait Implementations§
impl Freeze for DebugReportCallbackCreateInfoEXT
impl RefUnwindSafe for DebugReportCallbackCreateInfoEXT
impl !Send for DebugReportCallbackCreateInfoEXT
impl !Sync for DebugReportCallbackCreateInfoEXT
impl Unpin for DebugReportCallbackCreateInfoEXT
impl UnsafeUnpin for DebugReportCallbackCreateInfoEXT
impl UnwindSafe for DebugReportCallbackCreateInfoEXT
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