pub type HostResult<T = Response> = Result<T, HostError>;

Aliased Type§

enum HostResult<T = Response> {
    Ok(T),
    Err(HostError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(HostError)

Contains the error value