Struct wgpu_core::pipeline::ProgrammableStageDescriptor  
source · pub struct ProgrammableStageDescriptor<'a> {
    pub module: ShaderModuleId,
    pub entry_point: Cow<'a, str>,
}Expand description
Describes a programmable pipeline stage.
Fields§
§module: ShaderModuleIdThe compiled shader module for this stage.
entry_point: Cow<'a, str>The name of the entry point in the compiled shader. There must be a function with this name in the shader.
Trait Implementations§
source§impl<'a> Clone for ProgrammableStageDescriptor<'a>
 
impl<'a> Clone for ProgrammableStageDescriptor<'a>
source§fn clone(&self) -> ProgrammableStageDescriptor<'a>
 
fn clone(&self) -> ProgrammableStageDescriptor<'a>
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 moreAuto Trait Implementations§
impl<'a> !RefUnwindSafe for ProgrammableStageDescriptor<'a>
impl<'a> Send for ProgrammableStageDescriptor<'a>
impl<'a> Sync for ProgrammableStageDescriptor<'a>
impl<'a> Unpin for ProgrammableStageDescriptor<'a>
impl<'a> !UnwindSafe for ProgrammableStageDescriptor<'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