Skip to main content

LogResult

Type Alias LogResult 

Source
pub type LogResult<T, E> = Result<T, LogError<E>>;
Expand description

A specialized Result alias for the combinator driver.

Aliased Type§

pub enum LogResult<T, E> {
    Ok(T),
    Err(LogError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LogError<E>)

Contains the error value