pub trait EntryPointsCallerProvider {
// Required method
fn entry_points_caller(env: &HostEnv) -> EntryPointsCaller;
}Expand description
A type which can provide an EntryPointsCaller.
Required Methods§
Sourcefn entry_points_caller(env: &HostEnv) -> EntryPointsCaller
fn entry_points_caller(env: &HostEnv) -> EntryPointsCaller
Returns an EntryPointsCaller for the given host environment.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.