GPUStarterResult

Type Alias GPUStarterResult 

Source
pub type GPUStarterResult<T> = Result<T, GPUStarterError>;
Expand description

Result type that goes with error type GPUStarterError

Aliased Type§

pub enum GPUStarterResult<T> {
    Ok(T),
    Err(GPUStarterError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GPUStarterError)

Contains the error value