pub enum WebhookPayloadSpec {
Canonical,
Raw(String),
}Expand description
Canonical payload presets for webhook fixtures.
Variants§
Canonical
Use the built-in provider canonical payload template.
Raw(String)
Use an explicit payload string.
Trait Implementations§
Source§impl Clone for WebhookPayloadSpec
impl Clone for WebhookPayloadSpec
Source§fn clone(&self) -> WebhookPayloadSpec
fn clone(&self) -> WebhookPayloadSpec
Returns a duplicate of the value. Read more
1.0.0 · 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 WebhookPayloadSpec
impl Debug for WebhookPayloadSpec
Source§impl PartialEq for WebhookPayloadSpec
impl PartialEq for WebhookPayloadSpec
impl Eq for WebhookPayloadSpec
impl StructuralPartialEq for WebhookPayloadSpec
Auto Trait Implementations§
impl Freeze for WebhookPayloadSpec
impl RefUnwindSafe for WebhookPayloadSpec
impl Send for WebhookPayloadSpec
impl Sync for WebhookPayloadSpec
impl Unpin for WebhookPayloadSpec
impl UnsafeUnpin for WebhookPayloadSpec
impl UnwindSafe for WebhookPayloadSpec
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