Enum gfx_core::factory::CombinedError [] [src]

pub enum CombinedError {
    Texture(CreationError),
    Resource(ResourceViewError),
    Target(TargetViewError),
}

An error from creating textures with views at the same time.

Variants

Failed to create the raw texture.

Failed to create SRV or UAV.

Failed to create RTV or DSV.

Trait Implementations

impl Clone for CombinedError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CombinedError
[src]

Formats the value using the given formatter.

impl PartialEq for CombinedError
[src]

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

This method tests for !=.

impl Display for CombinedError
[src]

Formats the value using the given formatter. Read more

impl Error for CombinedError
[src]

A short description of the error. Read more

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

impl From<CreationError> for CombinedError
[src]

Performs the conversion.

impl From<ResourceViewError> for CombinedError
[src]

Performs the conversion.

impl From<TargetViewError> for CombinedError
[src]

Performs the conversion.