kona_common::errors

Type Alias IOResult

Source
pub type IOResult<T> = Result<T, IOError>;
Expand description

A Result type for the IOError.

Aliased Type§

enum IOResult<T> {
    Ok(T),
    Err(IOError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IOError)

Contains the error value