pub type ActionResult = Result<(), Error>;
The result of an action event handler.
All event handlers provided in this module emit this type as their output.
enum ActionResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value