SampledFmapFn

Trait SampledFmapFn 

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

Required Methods§

Source

fn call(&self, input: SampledValue) -> SampledValue

Implementors§

Source§

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