pub struct InputAttachmentAspectReferenceBuilder<'a> { /* private fields */ }Implementations§
source§impl<'a> InputAttachmentAspectReferenceBuilder<'a>
impl<'a> InputAttachmentAspectReferenceBuilder<'a>
pub fn subpass(self, subpass: u32) -> InputAttachmentAspectReferenceBuilder<'a>
pub fn input_attachment_index(
self,
input_attachment_index: u32
) -> InputAttachmentAspectReferenceBuilder<'a>
pub fn aspect_mask(
self,
aspect_mask: ImageAspectFlags
) -> InputAttachmentAspectReferenceBuilder<'a>
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>
§type Target = InputAttachmentAspectReference
type Target = InputAttachmentAspectReference
The resulting type after dereferencing.