trait MapPassErr<T, O> {
    // Required method
    fn map_pass_err(self, scope: PassErrorScope) -> Result<T, O>;
}

Required Methods§

source

fn map_pass_err(self, scope: PassErrorScope) -> Result<T, O>

Implementations on Foreign Types§

source§

impl<T, E> MapPassErr<T, RenderBundleError> for Result<T, E>where E: Into<RenderBundleErrorInner>,

source§

impl<T, E> MapPassErr<T, ComputePassError> for Result<T, E>where E: Into<ComputePassErrorInner>,

source§

impl<T, E> MapPassErr<T, RenderPassError> for Result<T, E>where E: Into<RenderPassErrorInner>,

Implementors§