Struct ash::vk::DebugMarkerObjectNameInfoEXTBuilder
source · pub struct DebugMarkerObjectNameInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> DebugMarkerObjectNameInfoEXTBuilder<'a>
pub fn object_type(self, object_type: DebugReportObjectTypeEXT) -> Self
pub fn object(self, object: u64) -> Self
pub fn object_name(self, object_name: &'a CStr) -> Self
sourcepub fn build(self) -> DebugMarkerObjectNameInfoEXT
pub fn build(self) -> DebugMarkerObjectNameInfoEXT
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> Deref for DebugMarkerObjectNameInfoEXTBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> RefUnwindSafe for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> !Send for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> !Sync for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> Unpin for DebugMarkerObjectNameInfoEXTBuilder<'a>
impl<'a> UnwindSafe for DebugMarkerObjectNameInfoEXTBuilder<'a>
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