pub enum InboxKind {
Task,
Ask,
Handoff,
Reply,
McpRequest,
McpReply,
}Expand description
In-band message kind (control signals like cancel do NOT travel here — they are out-of-band).
Variants§
Task
Ask
Handoff
Reply
McpRequest
A worker→orchestrator MCP proxy request (fetch the proxiable tool manifest,
or invoke one of those tools). The orchestrator runs the real (host-bound)
MCP server and answers with InboxKind::McpReply.
McpReply
The orchestrator’s answer to an InboxKind::McpRequest.
Trait Implementations§
impl Copy for InboxKind
Source§impl<'de> Deserialize<'de> for InboxKind
impl<'de> Deserialize<'de> for InboxKind
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
impl Eq for InboxKind
impl StructuralPartialEq for InboxKind
Auto Trait Implementations§
impl Freeze for InboxKind
impl RefUnwindSafe for InboxKind
impl Send for InboxKind
impl Sync for InboxKind
impl Unpin for InboxKind
impl UnsafeUnpin for InboxKind
impl UnwindSafe for InboxKind
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