pub struct WebhookLogEntry {
pub id: String,
pub agent_id: String,
pub event_type: String,
pub payload: Value,
pub status: String,
pub attempts: i64,
pub last_attempt_at: Option<String>,
pub created_at: String,
}Fields§
§id: String§agent_id: String§event_type: String§payload: Value§status: String§attempts: i64§last_attempt_at: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for WebhookLogEntry
impl Clone for WebhookLogEntry
Source§fn clone(&self) -> WebhookLogEntry
fn clone(&self) -> WebhookLogEntry
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 WebhookLogEntry
impl Debug for WebhookLogEntry
Source§impl<'de> Deserialize<'de> for WebhookLogEntry
impl<'de> Deserialize<'de> for WebhookLogEntry
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 WebhookLogEntry
impl RefUnwindSafe for WebhookLogEntry
impl Send for WebhookLogEntry
impl Sync for WebhookLogEntry
impl Unpin for WebhookLogEntry
impl UnsafeUnpin for WebhookLogEntry
impl UnwindSafe for WebhookLogEntry
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