pub type HookResult<T> = Result<T, PluginError>;
pub enum HookResult<T> { Ok(T), Err(PluginError), }
Contains the success value
Contains the error value