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