pub enum FinalizeError {
FinalizeInput {
input_index: usize,
error: FinalizeInputError,
},
InterpreterCheck(InterpreterCheckError),
}Expand description
Error finalizing an input.
Variants§
FinalizeInput
Error finalizing an input.
Fields
§
error: FinalizeInputErrorError finalizing input.
InterpreterCheck(InterpreterCheckError)
Error running the interpreter checks.
Trait Implementations§
Source§impl Debug for FinalizeError
impl Debug for FinalizeError
Source§impl Display for FinalizeError
impl Display for FinalizeError
Source§impl Error for FinalizeError
Available on crate feature std only.
impl Error for FinalizeError
Available on crate feature
std only.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()
Source§impl From<InterpreterCheckError> for FinalizeError
impl From<InterpreterCheckError> for FinalizeError
Source§fn from(e: InterpreterCheckError) -> Self
fn from(e: InterpreterCheckError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FinalizeError
impl RefUnwindSafe for FinalizeError
impl Send for FinalizeError
impl Sync for FinalizeError
impl Unpin for FinalizeError
impl UnsafeUnpin for FinalizeError
impl UnwindSafe for FinalizeError
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