pub type Result<T, E = WebhookError> = Result<T, E>;
Expand description
A result type alias with the WebhookError
type as the default error type.
Aliased Type§
enum Result<T, E = WebhookError> {
Ok(T),
Err(E),
}
pub type Result<T, E = WebhookError> = Result<T, E>;
A result type alias with the WebhookError
type as the default error type.
enum Result<T, E = WebhookError> {
Ok(T),
Err(E),
}