pub struct WebhookAttemptDetails {
pub response_code: Option<i32>,
pub response_latency_s: Duration,
pub error_message: Option<String>,
}
Fields§
§response_code: Option<i32>
§response_latency_s: Duration
§error_message: Option<String>
Trait Implementations§
Source§impl Clone for WebhookAttemptDetails
impl Clone for WebhookAttemptDetails
Source§fn clone(&self) -> WebhookAttemptDetails
fn clone(&self) -> WebhookAttemptDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebhookAttemptDetails
impl Debug for WebhookAttemptDetails
Source§impl<'de> Deserialize<'de> for WebhookAttemptDetails
impl<'de> Deserialize<'de> for WebhookAttemptDetails
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 WebhookAttemptDetails
impl PartialEq for WebhookAttemptDetails
Source§impl Serialize for WebhookAttemptDetails
impl Serialize for WebhookAttemptDetails
impl StructuralPartialEq for WebhookAttemptDetails
Auto Trait Implementations§
impl Freeze for WebhookAttemptDetails
impl RefUnwindSafe for WebhookAttemptDetails
impl Send for WebhookAttemptDetails
impl Sync for WebhookAttemptDetails
impl Unpin for WebhookAttemptDetails
impl UnwindSafe for WebhookAttemptDetails
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