#[repr(i32)]pub enum StoreOp {
Store = 0,
DontCare = 1,
}
Expand description
Possible argument values of AttachmentDescription::store_op
and stencil_store_op
,
specifying how the contents of the attachment are treated.
§Used access types
Both items use the “Write” access
Variants§
Store = 0
The contents generated during the render pass and within the render area are written to memory.
DontCare = 1
The contents within the render area are not needed after rendering, and may be discarded; the contents of the attachment will be undefined inside the render area.
Trait Implementations§
impl Copy for StoreOp
impl Eq for StoreOp
impl StructuralPartialEq for StoreOp
Auto Trait Implementations§
impl Freeze for StoreOp
impl RefUnwindSafe for StoreOp
impl Send for StoreOp
impl Sync for StoreOp
impl Unpin 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