pub struct WebhookFailureRecord {
pub id: String,
pub failed_at: String,
pub event: String,
pub task_id: Option<String>,
pub destination: Option<String>,
pub error: String,
pub attempts: u32,
pub replay_count: u32,
pub payload: WebhookPayload,
}Fields§
§id: String§failed_at: String§event: String§task_id: Option<String>§destination: Option<String>§error: String§attempts: u32§replay_count: u32§payload: WebhookPayloadTrait Implementations§
Source§impl Clone for WebhookFailureRecord
impl Clone for WebhookFailureRecord
Source§fn clone(&self) -> WebhookFailureRecord
fn clone(&self) -> WebhookFailureRecord
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 WebhookFailureRecord
impl Debug for WebhookFailureRecord
Source§impl<'de> Deserialize<'de> for WebhookFailureRecord
impl<'de> Deserialize<'de> for WebhookFailureRecord
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
Auto Trait Implementations§
impl Freeze for WebhookFailureRecord
impl RefUnwindSafe for WebhookFailureRecord
impl Send for WebhookFailureRecord
impl Sync for WebhookFailureRecord
impl Unpin for WebhookFailureRecord
impl UnsafeUnpin for WebhookFailureRecord
impl UnwindSafe for WebhookFailureRecord
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