pub enum CreateRenderPipelineError {
Show 18 variants
Device(DeviceError),
InvalidLayout,
Implicit(ImplicitLayoutError),
ColorState(u8, ColorStateError),
DepthStencilState(DepthStencilStateError),
InvalidSampleCount(u32),
TooManyColorAttachments {
given: u32,
limit: u32,
},
TooManyVertexBuffers {
given: u32,
limit: u32,
},
TooManyVertexAttributes {
given: u32,
limit: u32,
},
VertexStrideTooLarge {
index: u32,
given: u32,
limit: u32,
},
UnalignedVertexStride {
index: u32,
stride: BufferAddress,
},
InvalidVertexAttributeOffset {
location: ShaderLocation,
offset: BufferAddress,
},
StripIndexFormatForNonStripTopology {
strip_index_format: Option<IndexFormat>,
topology: PrimitiveTopology,
},
ConservativeRasterizationNonFillPolygonMode,
MissingFeatures(MissingFeatures),
MissingDownlevelFlags(MissingDownlevelFlags),
Stage {
stage: ShaderStages,
error: StageError,
},
Internal {
stage: ShaderStages,
error: String,
},
}Variants
Device(DeviceError)
InvalidLayout
Implicit(ImplicitLayoutError)
ColorState(u8, ColorStateError)
DepthStencilState(DepthStencilStateError)
InvalidSampleCount(u32)
TooManyColorAttachments
TooManyVertexBuffers
TooManyVertexAttributes
VertexStrideTooLarge
UnalignedVertexStride
InvalidVertexAttributeOffset
StripIndexFormatForNonStripTopology
ConservativeRasterizationNonFillPolygonMode
MissingFeatures(MissingFeatures)
MissingDownlevelFlags(MissingDownlevelFlags)
Stage
Internal
Trait Implementations
sourceimpl Clone for CreateRenderPipelineError
impl Clone for CreateRenderPipelineError
sourcefn clone(&self) -> CreateRenderPipelineError
fn clone(&self) -> CreateRenderPipelineError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateRenderPipelineError
impl Debug for CreateRenderPipelineError
sourceimpl Display for CreateRenderPipelineError
impl Display for CreateRenderPipelineError
sourceimpl Error for CreateRenderPipelineError
impl Error for CreateRenderPipelineError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<DepthStencilStateError> for CreateRenderPipelineError
impl From<DepthStencilStateError> for CreateRenderPipelineError
sourcefn from(source: DepthStencilStateError) -> Self
fn from(source: DepthStencilStateError) -> Self
Converts to this type from the input type.
sourceimpl From<DeviceError> for CreateRenderPipelineError
impl From<DeviceError> for CreateRenderPipelineError
sourcefn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
sourceimpl From<ImplicitLayoutError> for CreateRenderPipelineError
impl From<ImplicitLayoutError> for CreateRenderPipelineError
sourcefn from(source: ImplicitLayoutError) -> Self
fn from(source: ImplicitLayoutError) -> Self
Converts to this type from the input type.
sourceimpl From<MissingDownlevelFlags> for CreateRenderPipelineError
impl From<MissingDownlevelFlags> for CreateRenderPipelineError
sourcefn from(source: MissingDownlevelFlags) -> Self
fn from(source: MissingDownlevelFlags) -> Self
Converts to this type from the input type.
sourceimpl From<MissingFeatures> for CreateRenderPipelineError
impl From<MissingFeatures> for CreateRenderPipelineError
sourcefn from(source: MissingFeatures) -> Self
fn from(source: MissingFeatures) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for CreateRenderPipelineError
impl Send for CreateRenderPipelineError
impl Sync for CreateRenderPipelineError
impl Unpin for CreateRenderPipelineError
impl !UnwindSafe for CreateRenderPipelineError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more