pub struct AnsweredCall {
pub call_id: CompactString,
pub output: String,
pub is_error: bool,
}Expand description
One P1 syscall the kernel adjudicated itself, and the answer the model reads for it.
A syscall call is never dispatched to a host, but it is a tool call the model made, so it
still gets a tool result — the v0.2.42 rule that the model-facing surface stays a training-set
convention. is_error is what distinguishes “the kernel did it” from “the kernel refused”.
Fields§
§call_id: CompactString§output: String§is_error: boolTrait Implementations§
Source§impl Clone for AnsweredCall
impl Clone for AnsweredCall
Source§fn clone(&self) -> AnsweredCall
fn clone(&self) -> AnsweredCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AnsweredCall
impl RefUnwindSafe for AnsweredCall
impl Send for AnsweredCall
impl Sync for AnsweredCall
impl Unpin for AnsweredCall
impl UnsafeUnpin for AnsweredCall
impl UnwindSafe for AnsweredCall
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