#[repr(C)]pub struct DebugMarkerObjectNameInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub object_type: DebugReportObjectTypeEXT,
pub object: u64,
pub p_object_name: *const c_char,
}Expand description
VkDebugMarkerObjectNameInfoEXT
Provided by VK_EXT_debug_marker.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT.
p_next: *const c_voidOptional, may be null.
object_type: DebugReportObjectTypeEXT§object: u64Thread safety: must be externally synchronized.
p_object_name: *const c_charImplementations§
Source§impl DebugMarkerObjectNameInfoEXT
impl DebugMarkerObjectNameInfoEXT
Sourcepub fn builder<'a>() -> DebugMarkerObjectNameInfoEXTBuilder<'a>
pub fn builder<'a>() -> DebugMarkerObjectNameInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DebugMarkerObjectNameInfoEXT
impl Clone for DebugMarkerObjectNameInfoEXT
Source§fn clone(&self) -> DebugMarkerObjectNameInfoEXT
fn clone(&self) -> DebugMarkerObjectNameInfoEXT
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 DebugMarkerObjectNameInfoEXT
impl Debug for DebugMarkerObjectNameInfoEXT
impl Copy for DebugMarkerObjectNameInfoEXT
Auto Trait Implementations§
impl Freeze for DebugMarkerObjectNameInfoEXT
impl RefUnwindSafe for DebugMarkerObjectNameInfoEXT
impl !Send for DebugMarkerObjectNameInfoEXT
impl !Sync for DebugMarkerObjectNameInfoEXT
impl Unpin for DebugMarkerObjectNameInfoEXT
impl UnsafeUnpin for DebugMarkerObjectNameInfoEXT
impl UnwindSafe for DebugMarkerObjectNameInfoEXT
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