pub type HookResult<E> = Result<(), HookError<E>>;
The result returned by hooks
enum HookResult<E> { Ok(()), Err(HookError<E>), }
Contains the success value
Contains the error value