pub struct ExitCodeDoc {
pub code: i32,
pub label: &'static str,
pub meaning: &'static str,
}Expand description
One documented exit code in the agent-facing contract.
Fields§
§code: i32Numeric process exit code.
label: &'static strStable label tying the code to its error category.
meaning: &'static strOne-line human meaning.
Auto Trait Implementations§
impl Freeze for ExitCodeDoc
impl RefUnwindSafe for ExitCodeDoc
impl Send for ExitCodeDoc
impl Sync for ExitCodeDoc
impl Unpin for ExitCodeDoc
impl UnsafeUnpin for ExitCodeDoc
impl UnwindSafe for ExitCodeDoc
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