ActionResult

Type Alias ActionResult 

Source
pub type ActionResult = Result<(), Error>;
Expand description

The result of an action event handler.

All event handlers provided in this module emit this type as their output.

Aliased Type§

pub enum ActionResult {
    Ok(()),
    Err(Error),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value