pub struct ExtDebugUtilsFn {
pub set_debug_utils_object_name_ext: unsafe extern "system" fn(_: Device, _: *const DebugUtilsObjectNameInfoEXT) -> Result,
pub set_debug_utils_object_tag_ext: unsafe extern "system" fn(_: Device, _: *const DebugUtilsObjectTagInfoEXT) -> Result,
pub queue_begin_debug_utils_label_ext: unsafe extern "system" fn(_: Queue, _: *const DebugUtilsLabelEXT),
pub queue_end_debug_utils_label_ext: unsafe extern "system" fn(_: Queue),
pub queue_insert_debug_utils_label_ext: unsafe extern "system" fn(_: Queue, _: *const DebugUtilsLabelEXT),
pub cmd_begin_debug_utils_label_ext: unsafe extern "system" fn(_: CommandBuffer, _: *const DebugUtilsLabelEXT),
pub cmd_end_debug_utils_label_ext: unsafe extern "system" fn(_: CommandBuffer),
pub cmd_insert_debug_utils_label_ext: unsafe extern "system" fn(_: CommandBuffer, _: *const DebugUtilsLabelEXT),
pub create_debug_utils_messenger_ext: unsafe extern "system" fn(_: Instance, _: *const DebugUtilsMessengerCreateInfoEXT, _: *const AllocationCallbacks, _: *mut DebugUtilsMessengerEXT) -> Result,
pub destroy_debug_utils_messenger_ext: unsafe extern "system" fn(_: Instance, _: DebugUtilsMessengerEXT, _: *const AllocationCallbacks),
pub submit_debug_utils_message_ext: unsafe extern "system" fn(_: Instance, _: DebugUtilsMessageSeverityFlagsEXT, _: DebugUtilsMessageTypeFlagsEXT, _: *const DebugUtilsMessengerCallbackDataEXT),
}Fields§
§set_debug_utils_object_name_ext: unsafe extern "system" fn(_: Device, _: *const DebugUtilsObjectNameInfoEXT) -> Result§set_debug_utils_object_tag_ext: unsafe extern "system" fn(_: Device, _: *const DebugUtilsObjectTagInfoEXT) -> Result§queue_begin_debug_utils_label_ext: unsafe extern "system" fn(_: Queue, _: *const DebugUtilsLabelEXT)§queue_end_debug_utils_label_ext: unsafe extern "system" fn(_: Queue)§queue_insert_debug_utils_label_ext: unsafe extern "system" fn(_: Queue, _: *const DebugUtilsLabelEXT)§cmd_begin_debug_utils_label_ext: unsafe extern "system" fn(_: CommandBuffer, _: *const DebugUtilsLabelEXT)§cmd_end_debug_utils_label_ext: unsafe extern "system" fn(_: CommandBuffer)§cmd_insert_debug_utils_label_ext: unsafe extern "system" fn(_: CommandBuffer, _: *const DebugUtilsLabelEXT)§create_debug_utils_messenger_ext: unsafe extern "system" fn(_: Instance, _: *const DebugUtilsMessengerCreateInfoEXT, _: *const AllocationCallbacks, _: *mut DebugUtilsMessengerEXT) -> Result§destroy_debug_utils_messenger_ext: unsafe extern "system" fn(_: Instance, _: DebugUtilsMessengerEXT, _: *const AllocationCallbacks)§submit_debug_utils_message_ext: unsafe extern "system" fn(_: Instance, _: DebugUtilsMessageSeverityFlagsEXT, _: DebugUtilsMessageTypeFlagsEXT, _: *const DebugUtilsMessengerCallbackDataEXT)Implementations§
Trait Implementations§
Source§impl Clone for ExtDebugUtilsFn
impl Clone for ExtDebugUtilsFn
Source§fn clone(&self) -> ExtDebugUtilsFn
fn clone(&self) -> ExtDebugUtilsFn
Returns a copy 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 Send for ExtDebugUtilsFn
impl Sync for ExtDebugUtilsFn
Auto Trait Implementations§
impl Freeze for ExtDebugUtilsFn
impl RefUnwindSafe for ExtDebugUtilsFn
impl Unpin for ExtDebugUtilsFn
impl UnwindSafe for ExtDebugUtilsFn
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.