pub type LogResult<T, E> = Result<T, LogError<E>>;
A specialized Result alias for the combinator driver.
Result
pub enum LogResult<T, E> { Ok(T), Err(LogError<E>), }
Contains the success value
Contains the error value