pub enum CreatePipelineLayoutError {
Device(DeviceError),
InvalidBindGroupLayout(BindGroupLayoutId),
MisalignedPushConstantRange {
index: usize,
bound: u32,
},
MissingFeatures(MissingFeatures),
MoreThanOnePushConstantRangePerStage {
index: usize,
provided: ShaderStages,
intersected: ShaderStages,
},
PushConstantRangeTooLarge {
index: usize,
range: Range<u32>,
max: u32,
},
TooManyBindings(BindingTypeMaxCountError),
TooManyGroups {
actual: usize,
max: usize,
},
}
Variants§
Device(DeviceError)
InvalidBindGroupLayout(BindGroupLayoutId)
MisalignedPushConstantRange
MissingFeatures(MissingFeatures)
MoreThanOnePushConstantRangePerStage
PushConstantRangeTooLarge
TooManyBindings(BindingTypeMaxCountError)
TooManyGroups
Trait Implementations§
source§impl Clone for CreatePipelineLayoutError
impl Clone for CreatePipelineLayoutError
source§fn clone(&self) -> CreatePipelineLayoutError
fn clone(&self) -> CreatePipelineLayoutError
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 Debug for CreatePipelineLayoutError
impl Debug for CreatePipelineLayoutError
source§impl Display for CreatePipelineLayoutError
impl Display for CreatePipelineLayoutError
source§impl Error for CreatePipelineLayoutError
impl Error for CreatePipelineLayoutError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CreatePipelineLayoutError> for ImplicitLayoutError
impl From<CreatePipelineLayoutError> for ImplicitLayoutError
source§fn from(source: CreatePipelineLayoutError) -> Self
fn from(source: CreatePipelineLayoutError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreatePipelineLayoutError
impl From<DeviceError> for CreatePipelineLayoutError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<MissingFeatures> for CreatePipelineLayoutError
impl From<MissingFeatures> for CreatePipelineLayoutError
source§fn from(source: MissingFeatures) -> Self
fn from(source: MissingFeatures) -> Self
Converts to this type from the input type.