#[repr(C)]pub struct DebugUtilsObjectTagInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub object_type: ObjectType,
pub object_handle: u64,
pub tag_name: u64,
pub tag_size: usize,
pub p_tag: *const c_void,
}Expand description
VkDebugUtilsObjectTagInfoEXT
Provided by VK_EXT_debug_utils.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_TAG_INFO_EXT.
p_next: *const c_voidOptional, may be null.
object_type: ObjectType§object_handle: u64Thread safety: must be externally synchronized.
tag_name: u64§tag_size: usizeLength of p_tag.
p_tag: *const c_voidImplementations§
Source§impl DebugUtilsObjectTagInfoEXT
impl DebugUtilsObjectTagInfoEXT
Sourcepub fn builder<'a>() -> DebugUtilsObjectTagInfoEXTBuilder<'a>
pub fn builder<'a>() -> DebugUtilsObjectTagInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DebugUtilsObjectTagInfoEXT
impl Clone for DebugUtilsObjectTagInfoEXT
Source§fn clone(&self) -> DebugUtilsObjectTagInfoEXT
fn clone(&self) -> DebugUtilsObjectTagInfoEXT
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 moreSource§impl Debug for DebugUtilsObjectTagInfoEXT
impl Debug for DebugUtilsObjectTagInfoEXT
Source§impl Default for DebugUtilsObjectTagInfoEXT
impl Default for DebugUtilsObjectTagInfoEXT
impl Copy for DebugUtilsObjectTagInfoEXT
Auto Trait Implementations§
impl Freeze for DebugUtilsObjectTagInfoEXT
impl RefUnwindSafe for DebugUtilsObjectTagInfoEXT
impl !Send for DebugUtilsObjectTagInfoEXT
impl !Sync for DebugUtilsObjectTagInfoEXT
impl Unpin for DebugUtilsObjectTagInfoEXT
impl UnsafeUnpin for DebugUtilsObjectTagInfoEXT
impl UnwindSafe for DebugUtilsObjectTagInfoEXT
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