pub struct CodexCallHandle {
pub request_id: RequestId,
pub events: EventStream<CodexEvent>,
pub response: Receiver<Result<CodexCallResult, McpError>>,
}Expand description
Handle returned for each codex call, bundling response and notifications.
Fields§
§request_id: RequestId§events: EventStream<CodexEvent>§response: Receiver<Result<CodexCallResult, McpError>>Auto Trait Implementations§
impl Freeze for CodexCallHandle
impl !RefUnwindSafe for CodexCallHandle
impl Send for CodexCallHandle
impl Sync for CodexCallHandle
impl Unpin for CodexCallHandle
impl UnsafeUnpin for CodexCallHandle
impl !UnwindSafe for CodexCallHandle
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