pub type InstanceMessage = InstanceMessage<'static, Owned>;Expand description
Instance message with owned values (Send-safe, for IPC).
Aliased Type§
pub struct InstanceMessage {
pub thread_id: ThreadId,
pub message: TelemetryMessage<'static, Owned>,
}Fields§
§thread_id: ThreadIdThe thread this message belongs to.
message: TelemetryMessage<'static, Owned>The telemetry message content.
Trait Implementations§
Source§impl From<InstanceMessage<'_, Transient>> for InstanceMessage
impl From<InstanceMessage<'_, Transient>> for InstanceMessage
Source§fn from(value: InstanceMessage<'_>) -> Self
fn from(value: InstanceMessage<'_>) -> Self
Converts to this type from the input type.