pub enum DeliveryStatus {
Pending,
Delivered,
Failed,
Retrying,
Abandoned,
}Expand description
Webhook delivery status labels.
Variants§
Pending
A stable label variant.
Delivered
A stable label variant.
Failed
A stable label variant.
Retrying
A stable label variant.
Abandoned
A stable label variant.
Implementations§
Trait Implementations§
Source§impl Clone for DeliveryStatus
impl Clone for DeliveryStatus
Source§fn clone(&self) -> DeliveryStatus
fn clone(&self) -> DeliveryStatus
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 DeliveryStatus
impl Debug for DeliveryStatus
Source§impl Default for DeliveryStatus
impl Default for DeliveryStatus
Source§impl Display for DeliveryStatus
impl Display for DeliveryStatus
Source§impl FromStr for DeliveryStatus
impl FromStr for DeliveryStatus
Source§impl Hash for DeliveryStatus
impl Hash for DeliveryStatus
Source§impl Ord for DeliveryStatus
impl Ord for DeliveryStatus
Source§fn cmp(&self, other: &DeliveryStatus) -> Ordering
fn cmp(&self, other: &DeliveryStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeliveryStatus
impl PartialEq for DeliveryStatus
Source§fn eq(&self, other: &DeliveryStatus) -> bool
fn eq(&self, other: &DeliveryStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DeliveryStatus
impl PartialOrd for DeliveryStatus
impl Copy for DeliveryStatus
impl Eq for DeliveryStatus
impl StructuralPartialEq for DeliveryStatus
Auto Trait Implementations§
impl Freeze for DeliveryStatus
impl RefUnwindSafe for DeliveryStatus
impl Send for DeliveryStatus
impl Sync for DeliveryStatus
impl Unpin for DeliveryStatus
impl UnsafeUnpin for DeliveryStatus
impl UnwindSafe for DeliveryStatus
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