pub struct PassDependency {
pub pass: String,
pub depends_on: String,
}Expand description
Describes a dependency between two passes.
Fields§
§pass: StringName of the pass that depends on another.
depends_on: StringName of the pass that must run first.
Implementations§
Trait 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
Source§impl Display for PassDependency
impl Display for PassDependency
Source§impl Hash for PassDependency
impl Hash for PassDependency
Source§impl PartialEq for PassDependency
impl PartialEq for PassDependency
impl Eq for PassDependency
impl StructuralPartialEq 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