pub enum WebHookExecutionStatus {
Pending,
Success,
Failed,
Skipped,
Unknown,
}Variants§
Pending
The webhook execution is pending
This is the status of the webhook execution when it is pending.
Success
The webhook execution is successful
This is the status of the webhook execution when it is successful.
Failed
The webhook execution is failed
This is the status of the webhook execution when it is failed.
Skipped
The webhook execution is skipped
This is the status of the webhook execution when it is skipped.
Unknown
The webhook execution is unknown
This is the status of the webhook execution when it is unknown.
Trait Implementations§
Source§impl Clone for WebHookExecutionStatus
impl Clone for WebHookExecutionStatus
Source§fn clone(&self) -> WebHookExecutionStatus
fn clone(&self) -> WebHookExecutionStatus
Returns a copy 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 ComposeSchema for WebHookExecutionStatus
impl ComposeSchema for WebHookExecutionStatus
Source§impl Debug for WebHookExecutionStatus
impl Debug for WebHookExecutionStatus
Source§impl<'de> Deserialize<'de> for WebHookExecutionStatus
impl<'de> Deserialize<'de> for WebHookExecutionStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for WebHookExecutionStatus
impl Display for WebHookExecutionStatus
Source§impl FromStr for WebHookExecutionStatus
impl FromStr for WebHookExecutionStatus
Source§impl Serialize for WebHookExecutionStatus
impl Serialize for WebHookExecutionStatus
Auto Trait Implementations§
impl Freeze for WebHookExecutionStatus
impl RefUnwindSafe for WebHookExecutionStatus
impl Send for WebHookExecutionStatus
impl Sync for WebHookExecutionStatus
impl Unpin for WebHookExecutionStatus
impl UnwindSafe for WebHookExecutionStatus
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