pub struct RenderingAttachmentLocationInfoBuilder<'a> { /* private fields */ }Expand description
Builder for RenderingAttachmentLocationInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> RenderingAttachmentLocationInfoBuilder<'a>
pub fn color_attachment_locations( self, slice: &'a [u32], ) -> RenderingAttachmentLocationInfoBuilder<'a>
Sourcepub fn push_next<T>(
self,
next: &'a mut T,
) -> RenderingAttachmentLocationInfoBuilder<'a>where
T: ExtendsRenderingAttachmentLocationInfo,
pub fn push_next<T>(
self,
next: &'a mut T,
) -> RenderingAttachmentLocationInfoBuilder<'a>where
T: ExtendsRenderingAttachmentLocationInfo,
Prepend a struct to the pNext chain. See RenderingAttachmentLocationInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> Deref for RenderingAttachmentLocationInfoBuilder<'a>
Source§type Target = RenderingAttachmentLocationInfo
type Target = RenderingAttachmentLocationInfo
The resulting type after dereferencing.
Source§impl<'a> DerefMut for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> DerefMut for RenderingAttachmentLocationInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> !Send for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> !Sync for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> Freeze for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> RefUnwindSafe for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> Unpin for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> UnsafeUnpin for RenderingAttachmentLocationInfoBuilder<'a>
impl<'a> UnwindSafe for RenderingAttachmentLocationInfoBuilder<'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