pub struct ComputePipelineDescriptor<'a, PLL = PipelineLayoutId, SM = ShaderModuleId, PLC = PipelineCacheId> {
pub label: Label<'a>,
pub layout: Option<PLL>,
pub stage: ProgrammableStageDescriptor<'a, SM>,
pub cache: Option<PLC>,
}
Expand description
Describes a compute pipeline.
Fields§
§label: Label<'a>
§layout: Option<PLL>
The layout of bind groups for this pipeline.
stage: ProgrammableStageDescriptor<'a, SM>
The compiled compute stage and its entry point.
cache: Option<PLC>
The pipeline cache to use when creating this pipeline.
Trait Implementations§
source§impl<'a, PLL: Clone, SM: Clone, PLC: Clone> Clone for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL: Clone, SM: Clone, PLC: Clone> Clone for ComputePipelineDescriptor<'a, PLL, SM, PLC>
source§fn clone(&self) -> ComputePipelineDescriptor<'a, PLL, SM, PLC>
fn clone(&self) -> ComputePipelineDescriptor<'a, PLL, SM, PLC>
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<'a, PLL: Debug, SM: Debug, PLC: Debug> Debug for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL: Debug, SM: Debug, PLC: Debug> Debug for ComputePipelineDescriptor<'a, PLL, SM, PLC>
source§impl<'de, 'a, PLL, SM, PLC> Deserialize<'de> for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'de, 'a, PLL, SM, PLC> Deserialize<'de> for ComputePipelineDescriptor<'a, PLL, SM, PLC>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a, PLL, SM, PLC> Serialize for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL, SM, PLC> Serialize for ComputePipelineDescriptor<'a, PLL, SM, PLC>
Auto Trait Implementations§
impl<'a, PLL, SM, PLC> Freeze for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL, SM, PLC> RefUnwindSafe for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL, SM, PLC> Send for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL, SM, PLC> Sync for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL, SM, PLC> Unpin for ComputePipelineDescriptor<'a, PLL, SM, PLC>
impl<'a, PLL, SM, PLC> UnwindSafe for ComputePipelineDescriptor<'a, PLL, SM, PLC>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)