pub enum TerminationStatus {
None,
PostAbort(AbortInfo),
Return(Vec<TypedValue>),
Abort(AbortInfo),
}
Variants§
None
This function has not terminated, it is running normally
PostAbort(AbortInfo)
An abort has been triggered and the function is in post-abort state
Return(Vec<TypedValue>)
The function terminated successfully with a list of return values
Abort(AbortInfo)
The function terminated with an abort