pub type LazyIoResult<'a, T> = Result<T, LazyIoError<'a>>;
Result type for LazyIoError.
Result
LazyIoError
pub enum LazyIoResult<'a, T> { Ok(T), Err(LazyError<'a, Error>), }
Contains the success value
Contains the error value