Struct ash::vk::ClearAttachmentBuilder
source · pub struct ClearAttachmentBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ClearAttachmentBuilder<'a>
impl<'a> ClearAttachmentBuilder<'a>
pub fn aspect_mask(self, aspect_mask: ImageAspectFlags) -> Self
pub fn color_attachment(self, color_attachment: u32) -> Self
pub fn clear_value(self, clear_value: ClearValue) -> Self
sourcepub fn build(self) -> ClearAttachment
pub fn build(self) -> ClearAttachment
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 ClearAttachmentBuilder<'a>
impl<'a> Deref for ClearAttachmentBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for ClearAttachmentBuilder<'a>
impl<'a> RefUnwindSafe for ClearAttachmentBuilder<'a>
impl<'a> Send for ClearAttachmentBuilder<'a>
impl<'a> Sync for ClearAttachmentBuilder<'a>
impl<'a> Unpin for ClearAttachmentBuilder<'a>
impl<'a> UnwindSafe for ClearAttachmentBuilder<'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