Struct gfx_hal::pass::SubpassDependency[][src]

pub struct SubpassDependency {
    pub passes: Range<Option<SubpassId>>,
    pub stages: Range<PipelineStage>,
    pub accesses: Range<Access>,
    pub flags: Dependencies,
}

Expresses a dependency between multiple subpasses.

This is used both to describe a source or destination subpass; data either explicitly passes from this subpass to the next or from another subpass into this one.

Fields

passes: Range<Option<SubpassId>>

Other subpasses this one depends on.

If one of the range sides is None, it refers to the external scope either before or after the whole render pass.

stages: Range<PipelineStage>

Other pipeline stages this subpass depends on.

accesses: Range<Access>

Resource accesses this subpass depends on.

flags: Dependencies

Dependency flags.

Trait Implementations

impl Clone for SubpassDependency[src]

impl Debug for SubpassDependency[src]

impl Hash for SubpassDependency[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.