Type Alias winnow::error::Result

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

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

When integrating into the result of the application, see

Aliased Type§

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

Variants§