pub trait WriterChunk {
// Required method
fn primary_id(&self) -> &str;
// Provided method
fn agent_tier_aih(&self) -> Option<&str> { ... }
}Required Methods§
fn primary_id(&self) -> &str
Provided Methods§
Sourcefn agent_tier_aih(&self) -> Option<&str>
fn agent_tier_aih(&self) -> Option<&str>
The spawned agent’s AIH for the agent tier — where the writer
derives request_message rows + the agent_ref from the REQUEST
(the response chunk no longer carries them). None for the
vector/function tiers, which surface these through the chunk
stream instead.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".