#[repr(transparent)]pub struct RenderPassInputAttachmentAspectCreateInfoBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
pub fn aspect_references(
self,
aspect_references: &'a [InputAttachmentAspectReference]
) -> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
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
sourceimpl<'a> Deref for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> Deref for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
type Target = RenderPassInputAttachmentAspectCreateInfo
type Target = RenderPassInputAttachmentAspectCreateInfo
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<RenderPassInputAttachmentAspectCreateInfoBuilder<'a> as Deref>::Target
fn deref(
&self
) -> &<RenderPassInputAttachmentAspectCreateInfoBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
impl<'a> DerefMut for RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <RenderPassInputAttachmentAspectCreateInfoBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <RenderPassInputAttachmentAspectCreateInfoBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsRenderPassCreateInfo for RenderPassInputAttachmentAspectCreateInfoBuilder<'_>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more