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