pub enum SystemExecutionError {
PrepareMemory(SystemPrepareMemoryError),
Environment(String),
UndefinedTerminationReason(SystemTerminationReason),
IntoExtInfo(MemoryError),
}
Expand description
System execution error
Variants§
PrepareMemory(SystemPrepareMemoryError)
Prepare memory error
Environment(String)
Environment error
UndefinedTerminationReason(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 ActorSystemError<ActorExecutionError, SystemExecutionError>
impl From<SystemExecutionError> for ActorSystemError<ActorExecutionError, SystemExecutionError>
Source§fn from(err: SystemExecutionError) -> Self
fn from(err: SystemExecutionError) -> Self
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 Freeze for SystemExecutionError
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