pub struct SubpassDependency {
pub passes: Range<Option<SubpassId>>,
pub stages: Range<PipelineStage>,
pub accesses: Range<Access>,
pub flags: Dependencies,
}
Expand description
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§
Source§impl Clone for SubpassDependency
impl Clone for SubpassDependency
Source§fn clone(&self) -> SubpassDependency
fn clone(&self) -> SubpassDependency
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 SubpassDependency
impl Debug for SubpassDependency
Auto Trait Implementations§
impl Freeze for SubpassDependency
impl RefUnwindSafe for SubpassDependency
impl Send for SubpassDependency
impl Sync for SubpassDependency
impl Unpin for SubpassDependency
impl UnwindSafe for SubpassDependency
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