Type Alias EventResult

Source
pub type EventResult<T> = TraceResult<T, EventError>;
Expand description

Shorthand result type for EventErrors

Aliased Type§

enum EventResult<T> {
    Ok(T),
    Err(Trace<EventError>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Trace<EventError>)

Contains the error value