Struct pavex_cli_client::commands::errors::NonZeroExitCode
source · #[non_exhaustive]pub struct NonZeroExitCode {
pub code: i32,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code: i32
Trait Implementations§
source§impl Debug for NonZeroExitCode
impl Debug for NonZeroExitCode
source§impl Display for NonZeroExitCode
impl Display for NonZeroExitCode
source§impl Error for NonZeroExitCode
impl Error for NonZeroExitCode
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for NonZeroExitCode
impl RefUnwindSafe for NonZeroExitCode
impl Send for NonZeroExitCode
impl Sync for NonZeroExitCode
impl Unpin for NonZeroExitCode
impl UnwindSafe for NonZeroExitCode
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