pub trait CompileJsonRpcProgram<Compiler> {
type Methods;
// Required method
fn compile_jsonrpc_program(self, compiler: &Compiler) -> Self::Methods;
}Expand description
Compiles a first-order JSON-RPC program with a concrete interpreter.
Required Associated Types§
Required Methods§
Sourcefn compile_jsonrpc_program(self, compiler: &Compiler) -> Self::Methods
fn compile_jsonrpc_program(self, compiler: &Compiler) -> Self::Methods
Folds the complete first-order program through compiler.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".