Type Alias LazyIoResult

Source
pub type LazyIoResult<'a, T> = Result<T, LazyIoError<'a>>;
Expand description

Result type for LazyIoError.

Aliased Type§

pub enum LazyIoResult<'a, T> {
    Ok(T),
    Err(LazyError<'a, Error>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LazyError<'a, Error>)

Contains the error value