#[repr(C)]pub struct DebugUtilsMessengerCallbackDataEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DebugUtilsMessengerCallbackDataFlagsEXT,
pub p_message_id_name: *const c_char,
pub message_id_number: i32,
pub p_message: *const c_char,
pub queue_label_count: u32,
pub p_queue_labels: *const DebugUtilsLabelEXT,
pub cmd_buf_label_count: u32,
pub p_cmd_buf_labels: *const DebugUtilsLabelEXT,
pub object_count: u32,
pub p_objects: *const DebugUtilsObjectNameInfoEXT,
}Expand description
VkDebugUtilsMessengerCallbackDataEXT
Provided by VK_EXT_debug_utils.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT.
p_next: *const c_voidOptional, may be null.
flags: DebugUtilsMessengerCallbackDataFlagsEXT§p_message_id_name: *const c_charOptional, may be null.
message_id_number: i32§p_message: *const c_charOptional, may be null.
queue_label_count: u32Length of p_queue_labels.
p_queue_labels: *const DebugUtilsLabelEXT§cmd_buf_label_count: u32Length of p_cmd_buf_labels.
p_cmd_buf_labels: *const DebugUtilsLabelEXT§object_count: u32Length of p_objects.
p_objects: *const DebugUtilsObjectNameInfoEXTImplementations§
Source§impl DebugUtilsMessengerCallbackDataEXT
impl DebugUtilsMessengerCallbackDataEXT
Sourcepub fn builder<'a>() -> DebugUtilsMessengerCallbackDataEXTBuilder<'a>
pub fn builder<'a>() -> DebugUtilsMessengerCallbackDataEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DebugUtilsMessengerCallbackDataEXT
impl Clone for DebugUtilsMessengerCallbackDataEXT
Source§fn clone(&self) -> DebugUtilsMessengerCallbackDataEXT
fn clone(&self) -> DebugUtilsMessengerCallbackDataEXT
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 DebugUtilsMessengerCallbackDataEXT
Auto Trait Implementations§
impl Freeze for DebugUtilsMessengerCallbackDataEXT
impl RefUnwindSafe for DebugUtilsMessengerCallbackDataEXT
impl !Send for DebugUtilsMessengerCallbackDataEXT
impl !Sync for DebugUtilsMessengerCallbackDataEXT
impl Unpin for DebugUtilsMessengerCallbackDataEXT
impl UnsafeUnpin for DebugUtilsMessengerCallbackDataEXT
impl UnwindSafe for DebugUtilsMessengerCallbackDataEXT
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