pub type CoreResult<T> = Result<T, CoreError>;
Expand description

A result type which binds the CoreError to the error type.

Aliased Type§

enum CoreResult<T> {
    Ok(T),
    Err(CoreError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CoreError)

Contains the error value