pub enum AttachmentStoreOp {
Store,
DontCare,
}
Expand description
Specifies the operation to be used when writing data to a subpass attachment.
Variants§
Store
Content written to the attachment will be preserved.
DontCare
Attachment content will be undefined.
Trait Implementations§
Source§impl Clone for AttachmentStoreOp
impl Clone for AttachmentStoreOp
Source§fn clone(&self) -> AttachmentStoreOp
fn clone(&self) -> AttachmentStoreOp
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AttachmentStoreOp
impl Debug for AttachmentStoreOp
Source§impl Hash for AttachmentStoreOp
impl Hash for AttachmentStoreOp
Source§impl PartialEq for AttachmentStoreOp
impl PartialEq for AttachmentStoreOp
impl Copy for AttachmentStoreOp
impl Eq for AttachmentStoreOp
impl StructuralPartialEq for AttachmentStoreOp
Auto Trait Implementations§
impl Freeze for AttachmentStoreOp
impl RefUnwindSafe for AttachmentStoreOp
impl Send for AttachmentStoreOp
impl Sync for AttachmentStoreOp
impl Unpin for AttachmentStoreOp
impl UnwindSafe for AttachmentStoreOp
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