//! Host-side command sink trait mirroring the checked-in WIT interface.
usetemporalio_common_wasm::protos::coresdk::workflow_commands::WorkflowCommand;/// Runtime-facing workflow host interface for native and WASM backends.
pubtraitWorkflowHost{/// Update the details string surfaced through the workflow metadata query.
fnset_current_details(&self, details: String);/// Emit a workflow command for the current activation.
fnpush_command(&self, command: WorkflowCommand);}