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),
}