pub struct FleetWorkerEvent {
pub seq: u64,
pub run_id: FleetRunId,
pub worker_id: String,
pub task_id: String,
pub timestamp: String,
pub payload: FleetWorkerEventPayload,
pub extra: BTreeMap<String, Value>,
}Expand description
Worker event envelope.
Fields§
§seq: u64§run_id: FleetRunId§worker_id: String§task_id: String§timestamp: String§payload: FleetWorkerEventPayload§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for FleetWorkerEvent
impl Clone for FleetWorkerEvent
Source§fn clone(&self) -> FleetWorkerEvent
fn clone(&self) -> FleetWorkerEvent
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 FleetWorkerEvent
impl Debug for FleetWorkerEvent
Source§impl<'de> Deserialize<'de> for FleetWorkerEvent
impl<'de> Deserialize<'de> for FleetWorkerEvent
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 FleetWorkerEvent
impl RefUnwindSafe for FleetWorkerEvent
impl Send for FleetWorkerEvent
impl Sync for FleetWorkerEvent
impl Unpin for FleetWorkerEvent
impl UnsafeUnpin for FleetWorkerEvent
impl UnwindSafe for FleetWorkerEvent
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