pub struct RenderingAttachmentInfoBuilder<'a> { /* private fields */ }Expand description
Builder for RenderingAttachmentInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> RenderingAttachmentInfoBuilder<'a>
impl<'a> RenderingAttachmentInfoBuilder<'a>
pub fn image_view(self, value: ImageView) -> Self
pub fn image_layout(self, value: ImageLayout) -> Self
pub fn resolve_mode(self, value: ResolveModeFlagBits) -> Self
pub fn resolve_image_view(self, value: ImageView) -> Self
pub fn resolve_image_layout(self, value: ImageLayout) -> Self
pub fn load_op(self, value: AttachmentLoadOp) -> Self
pub fn store_op(self, value: AttachmentStoreOp) -> Self
pub fn clear_value(self, value: ClearValue) -> Self
Sourcepub fn push_next<T: ExtendsRenderingAttachmentInfo>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsRenderingAttachmentInfo>( self, next: &'a mut T, ) -> Self
Prepend a struct to the pNext chain. See RenderingAttachmentInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for RenderingAttachmentInfoBuilder<'a>
impl<'a> Deref for RenderingAttachmentInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for RenderingAttachmentInfoBuilder<'a>
impl<'a> RefUnwindSafe for RenderingAttachmentInfoBuilder<'a>
impl<'a> !Send for RenderingAttachmentInfoBuilder<'a>
impl<'a> !Sync for RenderingAttachmentInfoBuilder<'a>
impl<'a> Unpin for RenderingAttachmentInfoBuilder<'a>
impl<'a> UnsafeUnpin for RenderingAttachmentInfoBuilder<'a>
impl<'a> UnwindSafe for RenderingAttachmentInfoBuilder<'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