Type Alias XResult

Source
pub type XResult<T> = Result<T, XError>;
Expand description

Result type for the crate

Aliased Type§

enum XResult<T> {
    Ok(T),
    Err(XError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(XError)

Contains the error value