#[repr(C)]pub struct DebugUtilsObjectNameInfoEXT {
pub sType: StructureType,
pub pNext: *const c_void,
pub objectType: ObjectType,
pub objectHandle: u64,
pub pObjectName: *const i8,
}Fields§
§sType: StructureType§pNext: *const c_void§objectType: ObjectType§objectHandle: u64§pObjectName: *const i8Implementations§
Source§impl DebugUtilsObjectNameInfoEXT
impl DebugUtilsObjectNameInfoEXT
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *const c_void) -> Self
pub fn objectType(self, objectType: ObjectType) -> Self
pub fn objectHandle(self, objectHandle: u64) -> Self
pub fn pObjectName(self, pObjectName: *const i8) -> Self
Trait Implementations§
Source§impl Clone for DebugUtilsObjectNameInfoEXT
impl Clone for DebugUtilsObjectNameInfoEXT
Source§fn clone(&self) -> DebugUtilsObjectNameInfoEXT
fn clone(&self) -> DebugUtilsObjectNameInfoEXT
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 DebugUtilsObjectNameInfoEXT
impl Debug for DebugUtilsObjectNameInfoEXT
Source§impl Default for DebugUtilsObjectNameInfoEXT
impl Default for DebugUtilsObjectNameInfoEXT
Source§fn default() -> DebugUtilsObjectNameInfoEXT
fn default() -> DebugUtilsObjectNameInfoEXT
Returns the “default value” for a type. Read more
impl Copy for DebugUtilsObjectNameInfoEXT
Auto Trait Implementations§
impl Freeze for DebugUtilsObjectNameInfoEXT
impl RefUnwindSafe for DebugUtilsObjectNameInfoEXT
impl !Send for DebugUtilsObjectNameInfoEXT
impl !Sync for DebugUtilsObjectNameInfoEXT
impl Unpin for DebugUtilsObjectNameInfoEXT
impl UnwindSafe for DebugUtilsObjectNameInfoEXT
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