pub struct AddonEventCallRequest {
pub subscription_id: String,
pub event_id: String,
pub event_kind: String,
pub subject_kind: String,
pub subject_id: String,
pub occurred_at: String,
pub attempt: u32,
pub payload: Value,
}Fields§
§subscription_id: String§event_id: String§event_kind: String§subject_kind: String§subject_id: String§occurred_at: String§attempt: u32§payload: ValueTrait Implementations§
Source§impl Clone for AddonEventCallRequest
impl Clone for AddonEventCallRequest
Source§fn clone(&self) -> AddonEventCallRequest
fn clone(&self) -> AddonEventCallRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddonEventCallRequest
impl Debug for AddonEventCallRequest
Source§impl PartialEq for AddonEventCallRequest
impl PartialEq for AddonEventCallRequest
Source§fn eq(&self, other: &AddonEventCallRequest) -> bool
fn eq(&self, other: &AddonEventCallRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AddonEventCallRequest
impl StructuralPartialEq for AddonEventCallRequest
Auto Trait Implementations§
impl Freeze for AddonEventCallRequest
impl RefUnwindSafe for AddonEventCallRequest
impl Send for AddonEventCallRequest
impl Sync for AddonEventCallRequest
impl Unpin for AddonEventCallRequest
impl UnsafeUnpin for AddonEventCallRequest
impl UnwindSafe for AddonEventCallRequest
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