Enum gfx::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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for CombinedError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<CreationError> for CombinedError
[src]

[src]

Performs the conversion.

impl From<ResourceViewError> for CombinedError
[src]

[src]

Performs the conversion.

impl From<TargetViewError> for CombinedError
[src]

[src]

Performs the conversion.

impl PartialEq<CombinedError> for CombinedError
[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 CombinedError
[src]

[src]

Formats the value using the given formatter.

impl Display for CombinedError
[src]

[src]

Formats the value using the given formatter. Read more