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