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§
pub 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.
pub enum Result<T, E = WebhookError> {
Ok(T),
Err(E),
}