Enum gfx::PipelineStateError [] [src]

pub enum PipelineStateError {
    Program(ProgramError),
    DescriptorInit(InitError),
    DeviceCreate(CreationError),
}

Error creating a PipelineState

Variants

Shader program failed to link.

Unable to create PSO descriptor due to mismatched formats.

Device failed to create the handle give the descriptor.

Trait Implementations

impl Clone for PipelineStateError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for PipelineStateError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for PipelineStateError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for PipelineStateError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for PipelineStateError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<ProgramError> for PipelineStateError
[src]

[src]

Performs the conversion.

impl From<InitError> for PipelineStateError
[src]

[src]

Performs the conversion.

impl From<CreationError> for PipelineStateError
[src]

[src]

Performs the conversion.