pub struct RenderPassInputAttachmentAspectCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
pub fn aspect_references( self, aspect_references: &'a [InputAttachmentAspectReference] ) -> Self
sourcepub fn build(self) -> RenderPassInputAttachmentAspectCreateInfo
pub fn build(self) -> RenderPassInputAttachmentAspectCreateInfo
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 RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> Deref for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
source§impl<'a> DerefMut for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> DerefMut for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl ExtendsRenderPassCreateInfo for RenderPassInputAttachmentAspectCreateInfoBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> !Send for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> !Sync for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> Unpin for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> UnwindSafe for RenderPassInputAttachmentAspectCreateInfoBuilder<'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