pub trait Resumable:
Trace
+ Send
+ Sync {
// Required method
fn resume<'life0, 'life1, 'async_trait>(
&'life0 self,
args: Vec<Gc<Value>>,
cont: &'life1 Option<Arc<Continuation>>,
) -> Pin<Box<dyn Future<Output = Result<Vec<Gc<Value>>, RuntimeError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
// Provided methods
fn min_args(&self) -> usize { ... }
fn max_args(&self) -> Option<usize> { ... }
}