pub struct PassDependency {
pub from_pass: String,
pub to_pass: String,
pub resource: String,
pub kind: DependencyKind,
}Expand description
An edge in the render graph, connecting a producer pass to a consumer pass through a shared resource.
Fields§
§from_pass: String§to_pass: String§resource: String§kind: DependencyKindTrait Implementations§
Source§impl Clone for PassDependency
impl Clone for PassDependency
Source§fn clone(&self) -> PassDependency
fn clone(&self) -> PassDependency
Returns a duplicate 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 PassDependency
impl Debug for PassDependency
Auto Trait Implementations§
impl Freeze for PassDependency
impl RefUnwindSafe for PassDependency
impl Send for PassDependency
impl Sync for PassDependency
impl Unpin for PassDependency
impl UnsafeUnpin for PassDependency
impl UnwindSafe for PassDependency
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