Skip to main content

GotchaResult

Type Alias GotchaResult 

Source
pub type GotchaResult<T> = Result<T, GotchaError>;
Expand description

Convenient result alias for framework operations.

Aliased Type§

pub enum GotchaResult<T> {
    Ok(T),
    Err(GotchaError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GotchaError)

Contains the error value