pub enum WebhookProfile {
GitHub,
Stripe,
Slack,
}Expand description
Supported webhook signing profiles.
Variants§
GitHub
GitHub webhook signature profile.
Stripe
Stripe webhook signature profile.
Slack
Slack webhook signature profile.
Trait Implementations§
Source§impl Clone for WebhookProfile
impl Clone for WebhookProfile
Source§fn clone(&self) -> WebhookProfile
fn clone(&self) -> WebhookProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebhookProfile
impl Debug for WebhookProfile
Source§impl Hash for WebhookProfile
impl Hash for WebhookProfile
Source§impl PartialEq for WebhookProfile
impl PartialEq for WebhookProfile
Source§fn eq(&self, other: &WebhookProfile) -> bool
fn eq(&self, other: &WebhookProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WebhookProfile
impl Eq for WebhookProfile
impl StructuralPartialEq for WebhookProfile
Auto Trait Implementations§
impl Freeze for WebhookProfile
impl RefUnwindSafe for WebhookProfile
impl Send for WebhookProfile
impl Sync for WebhookProfile
impl Unpin for WebhookProfile
impl UnsafeUnpin for WebhookProfile
impl UnwindSafe for WebhookProfile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more