Type Alias sodoken::SodokenResult

source ·
pub type SodokenResult<T> = Result<T, OneErr>;
Expand description

Sodoken Result Type

Aliased Type§

enum SodokenResult<T> {
    Ok(T),
    Err(OneErr),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OneErr)

Contains the error value