Enum gfx::CombinedError [] [src]

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

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

Variants

Texture

Failed to create the raw texture.

Resource

Failed to create SRV or UAV.

Target

Failed to create RTV or DSV.

Trait Implementations

impl From<Error> for CombinedError

fn from(e: Error) -> CombinedError

impl From<ResourceViewError> for CombinedError

fn from(e: ResourceViewError) -> CombinedError

impl From<TargetViewError> for CombinedError

fn from(e: TargetViewError) -> CombinedError

Derived Implementations

impl Debug for CombinedError

fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>

impl PartialEq<CombinedError> for CombinedError

fn eq(&self, __arg_0: &CombinedError) -> bool

fn ne(&self, __arg_0: &CombinedError) -> bool

impl Clone for CombinedError

fn clone(&self) -> CombinedError

1.0.0fn clone_from(&mut self, source: &Self)