pub struct HumanInboxEntry {Show 15 fields
pub projection_version: ProjectionVersion,
pub run_id: String,
pub flow_id: String,
pub request_id: String,
pub purpose: String,
pub mode: Option<String>,
pub prompt: String,
pub presents: Value,
pub decisions: Option<Vec<String>>,
pub output_schema: Option<JsonSchemaDocument>,
pub deadline_at_ms: Option<u64>,
pub requested_at_ms: u64,
pub requested_seq: u64,
pub run_path: String,
pub run_path_frames: RunPath,
}Expand description
One pending human request (step or supervision — purpose is the
discriminator, spine A.4).
Fields§
§projection_version: ProjectionVersionProtocol version (spine §10.3).
run_id: StringThe run awaiting the response.
flow_id: StringThe run’s flow.
request_id: StringThe pairing id a response must carry.
purpose: Stringstep vs supervision (R13).
mode: Option<String>Interaction mode (purpose = step only).
prompt: StringThe prompt.
presents: ValueMaterialized exhibits (values render directly; evidence refs go through the gallery route — 08 §2.6).
decisions: Option<Vec<String>>Confirm labels, when the mode declares them.
output_schema: Option<JsonSchemaDocument>The provideInput contract, when the mode declares one.
deadline_at_ms: Option<u64>Absolute response deadline (ms); absent for supervision gates —
they never time out (spine §6.9). After the deadline the runner
settles the request to unknown (fixed vocabulary).
requested_at_ms: u64When the request was recorded.
requested_seq: u64Ledger seq of the request.
run_path: StringCanonical string of the awaiting/gated step’s path.
run_path_frames: RunPathThe structured path (frames are the authority — spine §9).
Trait Implementations§
Source§impl Clone for HumanInboxEntry
impl Clone for HumanInboxEntry
Source§fn clone(&self) -> HumanInboxEntry
fn clone(&self) -> HumanInboxEntry
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for HumanInboxEntry
impl Debug for HumanInboxEntry
Source§impl<'de> Deserialize<'de> for HumanInboxEntry
impl<'de> Deserialize<'de> for HumanInboxEntry
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>,
Source§impl JsonSchema for HumanInboxEntry
impl JsonSchema for HumanInboxEntry
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read more