EventHandlerResult

Type Alias EventHandlerResult 

Source
pub type EventHandlerResult = Result<(), BoxError>;
Expand description

Result of the EventHandler.

Aliased Type§

pub enum EventHandlerResult {
    Ok(()),
    Err(Box<dyn Error>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error>)

Contains the error value