pub struct RenderingInputAttachmentIndexInfoBuilder<'a> { /* private fields */ }Expand description
Builder for RenderingInputAttachmentIndexInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> RenderingInputAttachmentIndexInfoBuilder<'a>
pub fn color_attachment_count(self, value: u32) -> Self
pub fn color_attachment_input_indices(self, slice: &'a [u32]) -> Self
pub fn depth_input_attachment_index(self, value: *const u32) -> Self
pub fn stencil_input_attachment_index(self, value: *const u32) -> Self
Sourcepub fn push_next<T: ExtendsRenderingInputAttachmentIndexInfo>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsRenderingInputAttachmentIndexInfo>( self, next: &'a mut T, ) -> Self
Prepend a struct to the pNext chain. See RenderingInputAttachmentIndexInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> Deref for RenderingInputAttachmentIndexInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> RefUnwindSafe for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> !Send for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> !Sync for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> Unpin for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> UnsafeUnpin for RenderingInputAttachmentIndexInfoBuilder<'a>
impl<'a> UnwindSafe for RenderingInputAttachmentIndexInfoBuilder<'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