pub struct CompiledPass {
pub pass: RenderPass,
pub pre_barriers: Vec<Barrier>,
}Expand description
A pass in the compiled execution order, with pre-computed barriers.
Fields§
§pass: RenderPass§pre_barriers: Vec<Barrier>Barriers to insert before this pass executes.
Trait Implementations§
Source§impl Clone for CompiledPass
impl Clone for CompiledPass
Source§fn clone(&self) -> CompiledPass
fn clone(&self) -> CompiledPass
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 moreAuto Trait Implementations§
impl Freeze for CompiledPass
impl RefUnwindSafe for CompiledPass
impl Send for CompiledPass
impl Sync for CompiledPass
impl Unpin for CompiledPass
impl UnsafeUnpin for CompiledPass
impl UnwindSafe for CompiledPass
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