[][src]Enum wgpu_core::binding_model::CreatePipelineLayoutError

pub enum CreatePipelineLayoutError {
    Device(DeviceError),
    InvalidBindGroupLayout(BindGroupLayoutId),
    MisalignedPushConstantRange {
        index: usize,
        bound: u32,
    },
    MissingFeature(Features),
    MoreThanOnePushConstantRangePerStage {
        index: usize,
        provided: ShaderStage,
        intersected: ShaderStage,
    },
    PushConstantRangeTooLarge {
        index: usize,
        range: Range<u32>,
        max: u32,
    },
    TooManyBindings(BindingTypeMaxCountError),
    TooManyGroups {
        actual: usize,
        max: usize,
    },
}

Variants

Device(DeviceError)
InvalidBindGroupLayout(BindGroupLayoutId)
MisalignedPushConstantRange

Fields of MisalignedPushConstantRange

index: usizebound: u32
MissingFeature(Features)
MoreThanOnePushConstantRangePerStage

Fields of MoreThanOnePushConstantRangePerStage

index: usizeprovided: ShaderStageintersected: ShaderStage
PushConstantRangeTooLarge

Fields of PushConstantRangeTooLarge

index: usizerange: Range<u32>max: u32
TooManyBindings(BindingTypeMaxCountError)
TooManyGroups

Fields of TooManyGroups

actual: usizemax: usize

Trait Implementations

impl Clone for CreatePipelineLayoutError[src]

impl Debug for CreatePipelineLayoutError[src]

impl Display for CreatePipelineLayoutError[src]

impl Error for CreatePipelineLayoutError[src]

impl From<CreatePipelineLayoutError> for ImplicitLayoutError[src]

impl From<DeviceError> for CreatePipelineLayoutError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.