Trait r3_core::bind::ExecutableDefinerExt
source · pub trait ExecutableDefinerExt {
// Required method
fn start_with_bind<Binder, Func: FnBind<Binder, Output = ()>>(
self,
binder: Binder,
func: Func
) -> Self;
}
Expand description
An extension trait for ExecutableDefiner
. Provides a method to
attach an entry point with materialized bindings.
Required Methods§
sourcefn start_with_bind<Binder, Func: FnBind<Binder, Output = ()>>(
self,
binder: Binder,
func: Func
) -> Self
fn start_with_bind<Binder, Func: FnBind<Binder, Output = ()>>( self, binder: Binder, func: Func ) -> Self
Use the specified function with dependency as the entry point of the executable object being defined.