pub struct VulkanExtDebugReport { /* private fields */ }Expand description
struct for VK_EXT_debug_report
Implementations§
Source§impl VulkanExtDebugReport
impl VulkanExtDebugReport
pub fn new( instance: VkInstance, get_instance_proc_address: impl FnMut(VkInstance, &'static str) -> *const c_void, ) -> Self
Trait Implementations§
Source§impl Clone for VulkanExtDebugReport
impl Clone for VulkanExtDebugReport
Source§fn clone(&self) -> VulkanExtDebugReport
fn clone(&self) -> VulkanExtDebugReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VulkanExtDebugReport
Source§impl Debug for VulkanExtDebugReport
impl Debug for VulkanExtDebugReport
Source§impl Default for VulkanExtDebugReport
impl Default for VulkanExtDebugReport
Source§impl VK_EXT_debug_report for VulkanExtDebugReport
impl VK_EXT_debug_report for VulkanExtDebugReport
Source§fn vkCreateDebugReportCallbackEXT(
&self,
instance: VkInstance,
pCreateInfo: *const VkDebugReportCallbackCreateInfoEXT,
pAllocator: *const VkAllocationCallbacks,
pCallback: *mut VkDebugReportCallbackEXT,
) -> Result<(), VkError>
fn vkCreateDebugReportCallbackEXT( &self, instance: VkInstance, pCreateInfo: *const VkDebugReportCallbackCreateInfoEXT, pAllocator: *const VkAllocationCallbacks, pCallback: *mut VkDebugReportCallbackEXT, ) -> Result<(), VkError>
Source§fn vkDestroyDebugReportCallbackEXT(
&self,
instance: VkInstance,
callback: VkDebugReportCallbackEXT,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyDebugReportCallbackEXT( &self, instance: VkInstance, callback: VkDebugReportCallbackEXT, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkDebugReportMessageEXT(
&self,
instance: VkInstance,
flags: VkDebugReportFlagsEXT,
objectType: VkDebugReportObjectTypeEXT,
object: u64,
location: usize,
messageCode: i32,
pLayerPrefix: *const i8,
pMessage: *const i8,
) -> Result<(), VkError>
fn vkDebugReportMessageEXT( &self, instance: VkInstance, flags: VkDebugReportFlagsEXT, objectType: VkDebugReportObjectTypeEXT, object: u64, location: usize, messageCode: i32, pLayerPrefix: *const i8, pMessage: *const i8, ) -> Result<(), VkError>
Auto Trait Implementations§
impl Freeze for VulkanExtDebugReport
impl RefUnwindSafe for VulkanExtDebugReport
impl Send for VulkanExtDebugReport
impl Sync for VulkanExtDebugReport
impl Unpin for VulkanExtDebugReport
impl UnsafeUnpin for VulkanExtDebugReport
impl UnwindSafe for VulkanExtDebugReport
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