Enum gfx::CombinedError []

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 Error for CombinedError

A short description of the error. Read more

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

impl PartialEq<CombinedError> for CombinedError

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

This method tests for !=.

impl Clone for CombinedError

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<CreationError> for CombinedError

Performs the conversion.

impl From<ResourceViewError> for CombinedError

Performs the conversion.

impl From<TargetViewError> for CombinedError

Performs the conversion.

impl Debug for CombinedError

Formats the value using the given formatter.

impl Display for CombinedError

Formats the value using the given formatter. Read more