Type Alias mithril_client::MithrilResult

source ·
pub type MithrilResult<T> = Result<T>;
Expand description

Mithril result type, an alias of anyhow::Result

Aliased Type§

enum MithrilResult<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value