pub enum RenderPipelineError {
InvalidVertexAttributeOffset {
location: ShaderLocation,
offset: BufferAddress,
},
Stage {
flag: ShaderStage,
error: StageError,
},
IncompatibleOutputFormat {
index: u8,
},
InvalidSampleCount(u32),
}Variants§
Trait Implementations§
Source§impl Clone for RenderPipelineError
impl Clone for RenderPipelineError
Source§fn clone(&self) -> RenderPipelineError
fn clone(&self) -> RenderPipelineError
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 RenderPipelineError
impl RefUnwindSafe for RenderPipelineError
impl Send for RenderPipelineError
impl Sync for RenderPipelineError
impl Unpin for RenderPipelineError
impl UnwindSafe for RenderPipelineError
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