Enum gfx_hal::pass::AttachmentLoadOp
source · pub enum AttachmentLoadOp {
Load,
Clear,
DontCare,
}Expand description
Specifies the operation which will be applied at the beginning of a subpass.
Variants
Load
Preserve existing content in the attachment.
Clear
Clear the attachment.
DontCare
Attachment content will be undefined.
Trait Implementations
sourceimpl Clone for AttachmentLoadOp
impl Clone for AttachmentLoadOp
sourcefn clone(&self) -> AttachmentLoadOp
fn clone(&self) -> AttachmentLoadOp
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AttachmentLoadOp
impl Debug for AttachmentLoadOp
sourceimpl Hash for AttachmentLoadOp
impl Hash for AttachmentLoadOp
sourceimpl PartialEq<AttachmentLoadOp> for AttachmentLoadOp
impl PartialEq<AttachmentLoadOp> for AttachmentLoadOp
sourcefn eq(&self, other: &AttachmentLoadOp) -> bool
fn eq(&self, other: &AttachmentLoadOp) -> bool
impl Copy for AttachmentLoadOp
impl Eq for AttachmentLoadOp
impl StructuralEq for AttachmentLoadOp
impl StructuralPartialEq for AttachmentLoadOp
Auto Trait Implementations
impl RefUnwindSafe for AttachmentLoadOp
impl Send for AttachmentLoadOp
impl Sync for AttachmentLoadOp
impl Unpin for AttachmentLoadOp
impl UnwindSafe for AttachmentLoadOp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more