pub enum SystemExecutionError {
PrepareMemory(SystemPrepareMemoryError),
Environment(String),
TerminationReason(SystemTerminationReason),
IntoExtInfo(MemoryError),
}
Expand description
System execution error
Variants§
PrepareMemory(SystemPrepareMemoryError)
Prepare memory error
Environment(String)
Environment error
TerminationReason(SystemTerminationReason)
Termination reason
IntoExtInfo(MemoryError)
Error during into_ext_info()
call
Trait Implementations§
source§impl Debug for SystemExecutionError
impl Debug for SystemExecutionError
source§impl Display for SystemExecutionError
impl Display for SystemExecutionError
source§impl From<SystemExecutionError> for ExecutionError
impl From<SystemExecutionError> for ExecutionError
source§fn from(original: SystemExecutionError) -> ExecutionError
fn from(original: SystemExecutionError) -> ExecutionError
Converts to this type from the input type.
source§impl From<SystemTerminationReason> for SystemExecutionError
impl From<SystemTerminationReason> for SystemExecutionError
source§fn from(original: SystemTerminationReason) -> SystemExecutionError
fn from(original: SystemTerminationReason) -> SystemExecutionError
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for SystemExecutionError
impl Send for SystemExecutionError
impl Sync for SystemExecutionError
impl Unpin for SystemExecutionError
impl UnwindSafe for SystemExecutionError
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