pub struct InboundEvent {
pub id: i64,
pub at_ms: i64,
pub event_type: String,
pub request_id: Option<String>,
pub details_json: Option<String>,
}Fields§
§id: i64§at_ms: i64§event_type: String§request_id: Option<String>§details_json: Option<String>Trait Implementations§
Source§impl Clone for InboundEvent
impl Clone for InboundEvent
Source§fn clone(&self) -> InboundEvent
fn clone(&self) -> InboundEvent
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 InboundEvent
impl Debug for InboundEvent
Source§impl PartialEq for InboundEvent
impl PartialEq for InboundEvent
Source§impl Serialize for InboundEvent
impl Serialize for InboundEvent
impl Eq for InboundEvent
impl StructuralPartialEq for InboundEvent
Auto Trait Implementations§
impl Freeze for InboundEvent
impl RefUnwindSafe for InboundEvent
impl Send for InboundEvent
impl Sync for InboundEvent
impl Unpin for InboundEvent
impl UnsafeUnpin for InboundEvent
impl UnwindSafe for InboundEvent
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