pub enum StoreOp {
DontCare,
Store,
}Expand description
Specifies the state of a color or combined depth and stencil attachment image after graphic render pass framebuffer store operations.
Use this to specify the desired contents of any image after use in a pipeline command buffer.
Variants§
DontCare
The attachment will become undefined and reads will produce garbage data.
Store
The attachment will be preserved in memory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StoreOp
impl RefUnwindSafe for StoreOp
impl Send for StoreOp
impl Sync for StoreOp
impl Unpin for StoreOp
impl UnsafeUnpin for StoreOp
impl UnwindSafe for StoreOp
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