pub struct FailedWebhook {
pub id: String,
pub body: Option<String>,
pub url: String,
pub failure_time: i64,
}
Expand description
FailedWebhook : Details about a failed webhook.
Fields§
§id: String
The webhook ID, as sent in the X-Atlassian-Webhook-Identifier
header with the webhook.
body: Option<String>
The webhook body.
url: String
The original webhook destination.
failure_time: i64
The time the webhook was added to the list of failed webhooks (that is, the time of the last failed retry).
Implementations§
Source§impl FailedWebhook
impl FailedWebhook
Trait Implementations§
Source§impl Clone for FailedWebhook
impl Clone for FailedWebhook
Source§fn clone(&self) -> FailedWebhook
fn clone(&self) -> FailedWebhook
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 FailedWebhook
impl Debug for FailedWebhook
Source§impl Default for FailedWebhook
impl Default for FailedWebhook
Source§fn default() -> FailedWebhook
fn default() -> FailedWebhook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FailedWebhook
impl<'de> Deserialize<'de> for FailedWebhook
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 PartialEq for FailedWebhook
impl PartialEq for FailedWebhook
Source§impl Serialize for FailedWebhook
impl Serialize for FailedWebhook
impl StructuralPartialEq for FailedWebhook
Auto Trait Implementations§
impl Freeze for FailedWebhook
impl RefUnwindSafe for FailedWebhook
impl Send for FailedWebhook
impl Sync for FailedWebhook
impl Unpin for FailedWebhook
impl UnwindSafe for FailedWebhook
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