pub struct PreparedHttpRun {
pub starter: RunStarter,
pub thread_id: String,
pub run_id: String,
pub ingress_rx: UnboundedReceiver<RuntimeInput>,
}Expand description
Shared HTTP run bootstrap result.
The run is already started via AgentOS lifecycle API; this payload only
adapts it to transport wiring (RunStarter + ingress channel).
Fields§
§starter: RunStarter§thread_id: String§run_id: String§ingress_rx: UnboundedReceiver<RuntimeInput>Auto Trait Implementations§
impl Freeze for PreparedHttpRun
impl !RefUnwindSafe for PreparedHttpRun
impl Send for PreparedHttpRun
impl !Sync for PreparedHttpRun
impl Unpin for PreparedHttpRun
impl !UnwindSafe for PreparedHttpRun
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