pub struct WorkUnitEventRecord {
pub sequence_id: i64,
pub work_unit_id: String,
pub event_kind: String,
pub actor: Option<String>,
pub payload_json: Value,
pub recorded_at_ms: i64,
}Fields§
§sequence_id: i64§work_unit_id: String§event_kind: String§actor: Option<String>§payload_json: Value§recorded_at_ms: i64Trait Implementations§
Source§impl Clone for WorkUnitEventRecord
impl Clone for WorkUnitEventRecord
Source§fn clone(&self) -> WorkUnitEventRecord
fn clone(&self) -> WorkUnitEventRecord
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 WorkUnitEventRecord
impl Debug for WorkUnitEventRecord
Source§impl<'de> Deserialize<'de> for WorkUnitEventRecord
impl<'de> Deserialize<'de> for WorkUnitEventRecord
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 WorkUnitEventRecord
impl PartialEq for WorkUnitEventRecord
Source§impl Serialize for WorkUnitEventRecord
impl Serialize for WorkUnitEventRecord
impl StructuralPartialEq for WorkUnitEventRecord
Auto Trait Implementations§
impl Freeze for WorkUnitEventRecord
impl RefUnwindSafe for WorkUnitEventRecord
impl Send for WorkUnitEventRecord
impl Sync for WorkUnitEventRecord
impl Unpin for WorkUnitEventRecord
impl UnsafeUnpin for WorkUnitEventRecord
impl UnwindSafe for WorkUnitEventRecord
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