pub struct WebhookAttemptLog {
pub data: Option<HashMap<String, Value>>,
pub end_instant: Option<i64>,
pub id: Option<Uuid>,
pub start_instant: Option<i64>,
pub webhook_call_response: Option<Box<WebhookCallResponse>>,
pub webhook_event_log_id: Option<Uuid>,
pub webhook_id: Option<Uuid>,
pub attempt_result: Option<WebhookAttemptResult>,
}
Expand description
WebhookAttemptLog : A webhook call attempt log.
Fields§
§data: Option<HashMap<String, Value>>
§end_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
id: Option<Uuid>
§start_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
webhook_call_response: Option<Box<WebhookCallResponse>>
§webhook_event_log_id: Option<Uuid>
§webhook_id: Option<Uuid>
§attempt_result: Option<WebhookAttemptResult>
Implementations§
Source§impl WebhookAttemptLog
impl WebhookAttemptLog
Sourcepub fn new() -> WebhookAttemptLog
pub fn new() -> WebhookAttemptLog
A webhook call attempt log.
Trait Implementations§
Source§impl Clone for WebhookAttemptLog
impl Clone for WebhookAttemptLog
Source§fn clone(&self) -> WebhookAttemptLog
fn clone(&self) -> WebhookAttemptLog
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 WebhookAttemptLog
impl Debug for WebhookAttemptLog
Source§impl Default for WebhookAttemptLog
impl Default for WebhookAttemptLog
Source§fn default() -> WebhookAttemptLog
fn default() -> WebhookAttemptLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookAttemptLog
impl<'de> Deserialize<'de> for WebhookAttemptLog
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 WebhookAttemptLog
impl PartialEq for WebhookAttemptLog
Source§impl Serialize for WebhookAttemptLog
impl Serialize for WebhookAttemptLog
impl StructuralPartialEq for WebhookAttemptLog
Auto Trait Implementations§
impl Freeze for WebhookAttemptLog
impl RefUnwindSafe for WebhookAttemptLog
impl Send for WebhookAttemptLog
impl Sync for WebhookAttemptLog
impl Unpin for WebhookAttemptLog
impl UnwindSafe for WebhookAttemptLog
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