Type Alias mepeyew::GResult

source ·
pub type GResult<T> = Result<T, GpuError>;
Expand description

All returned errors are wrapped in GResult.

Aliased Type§

enum GResult<T> {
    Ok(T),
    Err(GpuError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GpuError)

Contains the error value