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§

source

fn create() -> (Self::Output, u64)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl BuiltinDispatcherFactory for ()

§

type Error = ()

§

type Output = ()

source§

fn create() -> (Self::Output, u64)

Implementors§