Trait cfx_executor::stack::Resumable
source · pub trait Resumable: Send {
// Required method
fn resume(self: Box<Self>, result: FrameResult) -> Box<dyn Executable>;
}
Expand description
Resumable
is a trait representing objects for resuming the execution of a
frame, which is suspended due to the invocation of another frame. The caller
frame is resumed when the callee frame returns.