pub type HookResolveActionResult = Result<Option<Box<dyn Action>>, Error>;
pub enum HookResolveActionResult { Ok(Option<Box<dyn Action>>), Err(Error), }
Contains the success value
Contains the error value