#[repr(C)]pub struct VkDebugReportCallbackCreateInfoEXT {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkDebugReportFlagsEXT,
pub pfnCallback: extern "system" fn(flags: VkDebugReportFlagsEXT, objectType: VkDebugReportObjectTypeEXT, object: u64, location: usize, messageCode: i32, pLayerPrefix: *const i8, pMessage: *const i8, pUserData: *mut c_void) -> VkBool32,
pub pUserData: *mut c_void,
}Expand description
struct VkDebugReportCallbackCreateInfoEXT from VK_EXT_debug_report
Fields§
§sType: VkStructureType§pNext: *const c_void§flags: VkDebugReportFlagsEXT§pfnCallback: extern "system" fn(flags: VkDebugReportFlagsEXT, objectType: VkDebugReportObjectTypeEXT, object: u64, location: usize, messageCode: i32, pLayerPrefix: *const i8, pMessage: *const i8, pUserData: *mut c_void) -> VkBool32§pUserData: *mut c_voidTrait Implementations§
Source§impl Clone for VkDebugReportCallbackCreateInfoEXT
impl Clone for VkDebugReportCallbackCreateInfoEXT
Source§fn clone(&self) -> VkDebugReportCallbackCreateInfoEXT
fn clone(&self) -> VkDebugReportCallbackCreateInfoEXT
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 VkDebugReportCallbackCreateInfoEXT
Auto Trait Implementations§
impl Freeze for VkDebugReportCallbackCreateInfoEXT
impl RefUnwindSafe for VkDebugReportCallbackCreateInfoEXT
impl !Send for VkDebugReportCallbackCreateInfoEXT
impl !Sync for VkDebugReportCallbackCreateInfoEXT
impl Unpin for VkDebugReportCallbackCreateInfoEXT
impl UnwindSafe for VkDebugReportCallbackCreateInfoEXT
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