[][src]Struct rendy_core::hal::pass::AttachmentOps

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: AttachmentOps[src][][]

Specifies DontCare for both load and store op.

pub const PRESERVE: AttachmentOps[src][][]

Specifies Load for load op and Store for store op.

pub fn new(load: AttachmentLoadOp, store: AttachmentStoreOp) -> AttachmentOps[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

impl RefUnwindSafe for AttachmentOps

impl Send for AttachmentOps

impl Sync for AttachmentOps

impl Unpin for AttachmentOps

impl UnwindSafe for AttachmentOps

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.