Struct ash::vk::DebugUtilsObjectTagInfoEXTBuilder
source · pub struct DebugUtilsObjectTagInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> DebugUtilsObjectTagInfoEXTBuilder<'a>
pub fn object_type(self, object_type: ObjectType) -> Self
pub fn object_handle(self, object_handle: u64) -> Self
pub fn tag_name(self, tag_name: u64) -> Self
pub fn tag(self, tag: &'a [u8]) -> Self
sourcepub fn build(self) -> DebugUtilsObjectTagInfoEXT
pub fn build(self) -> DebugUtilsObjectTagInfoEXT
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 DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> Deref for DebugUtilsObjectTagInfoEXTBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> RefUnwindSafe for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> !Send for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> !Sync for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> Unpin for DebugUtilsObjectTagInfoEXTBuilder<'a>
impl<'a> UnwindSafe for DebugUtilsObjectTagInfoEXTBuilder<'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