pub struct ExitCodeMeta<'a> {
pub code: i64,
pub help: &'a str,
}Expand description
One documented exit status.
Fields§
§code: i64§help: &'a strTrait Implementations§
Source§impl<'a> Clone for ExitCodeMeta<'a>
impl<'a> Clone for ExitCodeMeta<'a>
Source§fn clone(&self) -> ExitCodeMeta<'a>
fn clone(&self) -> ExitCodeMeta<'a>
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 moreimpl<'a> Copy for ExitCodeMeta<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExitCodeMeta<'a>
impl<'a> RefUnwindSafe for ExitCodeMeta<'a>
impl<'a> Send for ExitCodeMeta<'a>
impl<'a> Sync for ExitCodeMeta<'a>
impl<'a> Unpin for ExitCodeMeta<'a>
impl<'a> UnsafeUnpin for ExitCodeMeta<'a>
impl<'a> UnwindSafe for ExitCodeMeta<'a>
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