pub trait ExecutableDefinerExt {
    // Required method
    fn start_with_bind<Binder, Func>(self, binder: Binder, func: Func) -> Self
       where Func: FnBind<Binder, Output = ()>;
}
Expand description

An extension trait for ExecutableDefiner. Provides a method to attach an entry point with materialized bindings.

Required Methods§

source

fn start_with_bind<Binder, Func>(self, binder: Binder, func: Func) -> Selfwhere Func: FnBind<Binder, Output = ()>,

Use the specified function with dependency as the entry point of the executable object being defined.

Implementors§