pub trait BuiltinDispatcherFactory {
type Error;
type Output: BuiltinDispatcher<Error = Self::Error>;
// Required method
fn create() -> (Self::Output, u64);
}
Expand description
A trait that defines the interface of a builtin dispatcher factory.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.