Type Alias medal::core::MedalResult

source ·
type MedalResult<T> = Result<T, MedalError>;

Aliased Type§

enum MedalResult<T> {
    Ok(T),
    Err(MedalError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(MedalError)

Contains the error value