Type Alias winnow::error::ModalResult

source ·
pub type ModalResult<O, E = ContextError> = Result<O, ErrMode<E>>;
Expand description

Modal error reporting for Parser::parse_next

  • Ok(O) is the parsed value
  • Err(ErrMode<E>) is the error along with how to respond to it

By default, the error type (E) is ContextError.

When integrating into the result of the application, see

Aliased Type§

enum ModalResult<O, E = ContextError> {
    // some variants omitted
}

Variants§