Struct gfx_hal::pass::AttachmentOps[][src]

pub struct AttachmentOps {
    pub load: AttachmentLoadOp,
    pub store: AttachmentStoreOp,
}

Attachment operations.

Fields

load: AttachmentLoadOp

Indicates how the data of the attachment will be loaded at first usage at the beginning of the subpass.

store: AttachmentStoreOp

Whether or not data from the store operation will be preserved after the subpass.

Implementations

impl AttachmentOps[src]

pub const DONT_CARE: Self[src]

Specifies DontCare for both load and store op.

pub const INIT: Self[src]

Specifies Clear for load op and Store for store op.

pub const PRESERVE: Self[src]

Specifies Load for load op and Store for store op.

pub fn new(load: AttachmentLoadOp, store: AttachmentStoreOp) -> Self[src]

Convenience function to create a new AttachmentOps.

Trait Implementations

impl Clone for AttachmentOps[src]

impl Copy for AttachmentOps[src]

impl Debug for AttachmentOps[src]

impl Eq for AttachmentOps[src]

impl Hash for AttachmentOps[src]

impl PartialEq<AttachmentOps> for AttachmentOps[src]

impl StructuralEq for AttachmentOps[src]

impl StructuralPartialEq for AttachmentOps[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.