SampledBindFn

Trait SampledBindFn 

Source
pub trait SampledBindFn:
    Send
    + Sync
    + 'static {
    // Required method
    fn call(&self, input: SampledValue) -> ConstTree<UncertainNodeContent>;
}

Required Methods§

Implementors§

Source§

impl<F> SampledBindFn for F
where F: Fn(SampledValue) -> ConstTree<UncertainNodeContent> + Send + Sync + 'static,