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),
}
pub type MithrilResult<T> = Result<T>;
Mithril result type, an alias of anyhow::Result
enum MithrilResult<T> {
Ok(T),
Err(Error),
}