[][src]Struct ash::vk::DebugUtilsMessengerCallbackDataEXT

#[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,
}

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/VkDebugUtilsMessengerCallbackDataEXT.html

Fields

s_type: StructureTypep_next: *const c_voidflags: DebugUtilsMessengerCallbackDataFlagsEXTp_message_id_name: *const c_charmessage_id_number: i32p_message: *const c_charqueue_label_count: u32p_queue_labels: *const DebugUtilsLabelEXTcmd_buf_label_count: u32p_cmd_buf_labels: *const DebugUtilsLabelEXTobject_count: u32p_objects: *const DebugUtilsObjectNameInfoEXT

Methods

impl DebugUtilsMessengerCallbackDataEXT[src]

pub fn builder<'a>() -> DebugUtilsMessengerCallbackDataEXTBuilder<'a>[src]

Trait Implementations

impl Copy for DebugUtilsMessengerCallbackDataEXT[src]

impl Default for DebugUtilsMessengerCallbackDataEXT[src]

impl Clone for DebugUtilsMessengerCallbackDataEXT[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for DebugUtilsMessengerCallbackDataEXT[src]

Auto Trait Implementations

impl Unpin for DebugUtilsMessengerCallbackDataEXT

impl !Sync for DebugUtilsMessengerCallbackDataEXT

impl !Send for DebugUtilsMessengerCallbackDataEXT

impl UnwindSafe for DebugUtilsMessengerCallbackDataEXT

impl RefUnwindSafe for DebugUtilsMessengerCallbackDataEXT

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]