pub struct PersistedEvent {
pub seq: i64,
pub event_type: String,
pub runtime_id: Option<String>,
pub thread_id: Option<String>,
pub payload: Value,
pub created_at_ms: i64,
}Fields§
§seq: i64§event_type: String§runtime_id: Option<String>§thread_id: Option<String>§payload: Value§created_at_ms: i64Trait Implementations§
Source§impl Clone for PersistedEvent
impl Clone for PersistedEvent
Source§fn clone(&self) -> PersistedEvent
fn clone(&self) -> PersistedEvent
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 PersistedEvent
impl Debug for PersistedEvent
Source§impl<'de> Deserialize<'de> for PersistedEvent
impl<'de> Deserialize<'de> for PersistedEvent
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 PersistedEvent
impl RefUnwindSafe for PersistedEvent
impl Send for PersistedEvent
impl Sync for PersistedEvent
impl Unpin for PersistedEvent
impl UnsafeUnpin for PersistedEvent
impl UnwindSafe for PersistedEvent
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