Skip to main content

EventHandlerResult

Type Alias EventHandlerResult 

Source
pub type EventHandlerResult = Result<(), Box<dyn Error>>;

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