pub type HookResult = Result<(), HookError>;
The outcome returned by a hook handler.
pub enum HookResult { Ok(()), Err(HookError), }
Contains the success value
Contains the error value