pub trait BackendGraph: Send + Sync {
// Required method
fn init_execution_context(&self) -> Result<ExecutionContext, BackendError>;
}
Expand description
A BackendGraph can create BackendExecutionContexts; this is the backing implementation for the user-facing graph.