Executable

Type Alias Result_type

Source
pub type Result_type<T> = Result<T, Error_type>;

Aliased Type§

enum Result_type<T> {
    Ok(T),
    Err(Error_type),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error_type)

Contains the error value