pub struct ExitCodeInfo {
pub code: u8,
pub name: String,
pub meaning: String,
}Expand description
Exit code documentation for agents.
Fields§
§code: u8Numeric process exit code.
name: StringStable symbolic name.
meaning: StringOperational meaning.
Trait Implementations§
Source§impl Clone for ExitCodeInfo
impl Clone for ExitCodeInfo
Source§fn clone(&self) -> ExitCodeInfo
fn clone(&self) -> ExitCodeInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExitCodeInfo
impl Debug for ExitCodeInfo
Auto Trait Implementations§
impl Freeze for ExitCodeInfo
impl RefUnwindSafe for ExitCodeInfo
impl Send for ExitCodeInfo
impl Sync for ExitCodeInfo
impl Unpin for ExitCodeInfo
impl UnsafeUnpin for ExitCodeInfo
impl UnwindSafe for ExitCodeInfo
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