[][src]Trait dipstick::InputDyn

pub trait InputDyn: Send + Sync + 'static {
    fn input_dyn(&self) -> Arc<dyn InputScope + Send + Sync + 'static>;
}

A function trait that opens a new metric capture scope.

Required methods

fn input_dyn(&self) -> Arc<dyn InputScope + Send + Sync + 'static>

Open a new scope from this output.

Loading content...

Implementors

impl<T: Input + Send + Sync + 'static> InputDyn for T[src]

Blanket impl of dyn input trait

Loading content...