pub struct RenderAttachmentInfo<'a, B: Backend> {
pub image_view: &'a B::ImageView,
pub clear_value: ClearValue,
}
Expand description
A render attachment provided to begin_render_pass
.
Fields§
§image_view: &'a B::ImageView
View of the attachment image.
clear_value: ClearValue
Clear value, if needed.
Trait Implementations§
Auto Trait Implementations§
impl<'a, B> Freeze for RenderAttachmentInfo<'a, B>
impl<'a, B> RefUnwindSafe for RenderAttachmentInfo<'a, B>
impl<'a, B> Send for RenderAttachmentInfo<'a, B>
impl<'a, B> Sync for RenderAttachmentInfo<'a, B>
impl<'a, B> Unpin for RenderAttachmentInfo<'a, B>
impl<'a, B> UnwindSafe for RenderAttachmentInfo<'a, B>
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