pub type InterfaceResult<T> = Result<T, InterfaceError>;
Expand description

Interface Result Type

Aliased Type§

enum InterfaceResult<T> {
    Ok(T),
    Err(InterfaceError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InterfaceError)

Contains the error value