Type Alias mithril_common::StdResult

source ·
pub type StdResult<T> = Result<T, StdError>;
Expand description

Generic result type

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value