Type Alias naga::back::glsl::BackendResult

source ·
type BackendResult<T = ()> = Result<T, Error>;
Expand description

Shorthand result used internally by the backend

Aliased Type§

enum BackendResult<T = ()> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value