pub enum PipelineCompound<'a> {
PipelineCache(&'a ComputePipeline),
UnsavePipeline(ComputePipeline, &'static str),
}Variants§
PipelineCache(&'a ComputePipeline)
UnsavePipeline(ComputePipeline, &'static str)
Implementations§
Source§impl<'a> PipelineCompound<'a>
impl<'a> PipelineCompound<'a>
pub fn set_pipeline_begin_compute_pass( &self, begin_compute_pass: &mut ComputePass<'_>, )
pub fn get_unsave_pipeline(self) -> Option<(ComputePipeline, &'static str)>
Auto Trait Implementations§
impl<'a> Freeze for PipelineCompound<'a>
impl<'a> !RefUnwindSafe for PipelineCompound<'a>
impl<'a> Send for PipelineCompound<'a>
impl<'a> Sync for PipelineCompound<'a>
impl<'a> Unpin for PipelineCompound<'a>
impl<'a> !UnwindSafe for PipelineCompound<'a>
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