pub trait RuntimeBuiltinService {
// Required method
fn bindings_by_name(&self, name: &str) -> Vec<RuntimeBuiltinBinding>;
}Expand description
Invocation-scoped builtin authority used by exact compiled products. When installed, the dispatcher must not fall back to process-global discovery for a missing name.
Required Methods§
fn bindings_by_name(&self, name: &str) -> Vec<RuntimeBuiltinBinding>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".