Type Alias exmex::ExResult

source ·
pub type ExResult<U> = Result<U, ExError>;
Expand description

Exmex’ result type with ExError as error type.

Aliased Type§

enum ExResult<U> {
    Ok(U),
    Err(ExError),
}

Variants§

§1.0.0

Ok(U)

Contains the success value

§1.0.0

Err(ExError)

Contains the error value