pub type RunnerResult<T> = Result<T, StopReason>;Expand description
Type alias for the result of a Runner.
Aliased Type§
pub enum RunnerResult<T> {
Ok(T),
Err(StopReason),
}pub type RunnerResult<T> = Result<T, StopReason>;Type alias for the result of a Runner.
pub enum RunnerResult<T> {
Ok(T),
Err(StopReason),
}