pub enum AttachmentLoadOp {
Load,
Clear,
DontCare,
}
Expand description
Specifies the operation to be used when reading data from a subpass attachment.
Variants§
Load
Preserve existing content in the attachment.
Clear
Clear the attachment.
DontCare
Attachment content will be undefined.
Trait Implementations§
Source§impl Clone for AttachmentLoadOp
impl Clone for AttachmentLoadOp
Source§fn clone(&self) -> AttachmentLoadOp
fn clone(&self) -> AttachmentLoadOp
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 AttachmentLoadOp
impl Debug for AttachmentLoadOp
Source§impl Hash for AttachmentLoadOp
impl Hash for AttachmentLoadOp
Source§impl PartialEq for AttachmentLoadOp
impl PartialEq for AttachmentLoadOp
impl Copy for AttachmentLoadOp
impl Eq for AttachmentLoadOp
impl StructuralPartialEq for AttachmentLoadOp
Auto Trait Implementations§
impl Freeze for AttachmentLoadOp
impl RefUnwindSafe for AttachmentLoadOp
impl Send for AttachmentLoadOp
impl Sync for AttachmentLoadOp
impl Unpin for AttachmentLoadOp
impl UnwindSafe for AttachmentLoadOp
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