pub struct WebhookExecutionModel {Show 18 fields
pub created: i64,
pub duration: i64,
pub error: String,
pub id: i64,
pub request_body: String,
pub request_headers: String,
pub request_url: String,
pub response_body: String,
pub response_headers: String,
pub response_status: String,
pub response_status_code: i64,
pub result: WebhookExecutionResult,
pub retrigger_of: Option<Option<i64>>,
pub retriggerable: bool,
pub trigger_id: String,
pub trigger_type: WebhookTrigger,
pub updated: i64,
pub webhook_id: i64,
}Fields§
§created: i64§duration: i64§error: String§id: i64§request_body: String§request_headers: String§request_url: String§response_body: String§response_headers: String§response_status: String§response_status_code: i64§result: WebhookExecutionResult§retrigger_of: Option<Option<i64>>§retriggerable: bool§trigger_id: String§trigger_type: WebhookTrigger§updated: i64§webhook_id: i64Implementations§
Source§impl WebhookExecutionModel
impl WebhookExecutionModel
pub fn new( created: i64, duration: i64, error: String, id: i64, request_body: String, request_headers: String, request_url: String, response_body: String, response_headers: String, response_status: String, response_status_code: i64, result: WebhookExecutionResult, retriggerable: bool, trigger_id: String, trigger_type: WebhookTrigger, updated: i64, webhook_id: i64, ) -> WebhookExecutionModel
Trait Implementations§
Source§impl Clone for WebhookExecutionModel
impl Clone for WebhookExecutionModel
Source§fn clone(&self) -> WebhookExecutionModel
fn clone(&self) -> WebhookExecutionModel
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 WebhookExecutionModel
impl Debug for WebhookExecutionModel
Source§impl Default for WebhookExecutionModel
impl Default for WebhookExecutionModel
Source§fn default() -> WebhookExecutionModel
fn default() -> WebhookExecutionModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookExecutionModel
impl<'de> Deserialize<'de> for WebhookExecutionModel
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 WebhookExecutionModel
impl PartialEq for WebhookExecutionModel
Source§impl Serialize for WebhookExecutionModel
impl Serialize for WebhookExecutionModel
impl StructuralPartialEq for WebhookExecutionModel
Auto Trait Implementations§
impl Freeze for WebhookExecutionModel
impl RefUnwindSafe for WebhookExecutionModel
impl Send for WebhookExecutionModel
impl Sync for WebhookExecutionModel
impl Unpin for WebhookExecutionModel
impl UnwindSafe for WebhookExecutionModel
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