Struct risc0_zkvm::InvalidExitCodeError
source · pub struct InvalidExitCodeError(pub u32, pub u32);
Expand description
Error returned when a (system, user) exit code pair is an invalid representation.
Tuple Fields§
§0: u32
§1: u32
Trait Implementations§
source§impl Clone for InvalidExitCodeError
impl Clone for InvalidExitCodeError
source§fn clone(&self) -> InvalidExitCodeError
fn clone(&self) -> InvalidExitCodeError
Returns a copy 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 InvalidExitCodeError
impl Debug for InvalidExitCodeError
source§impl Display for InvalidExitCodeError
impl Display for InvalidExitCodeError
source§impl Error for InvalidExitCodeError
impl Error for InvalidExitCodeError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<InvalidExitCodeError> for VerifyError
impl From<InvalidExitCodeError> for VerifyError
source§fn from(err: InvalidExitCodeError) -> Self
fn from(err: InvalidExitCodeError) -> Self
Converts to this type from the input type.
impl Copy for InvalidExitCodeError
Auto Trait Implementations§
impl RefUnwindSafe for InvalidExitCodeError
impl Send for InvalidExitCodeError
impl Sync for InvalidExitCodeError
impl Unpin for InvalidExitCodeError
impl UnwindSafe for InvalidExitCodeError
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