StallScannerFn

Trait StallScannerFn 

Source
pub trait StallScannerFn:
    Fn(zx_duration_mono_t)
    + Send
    + Sync
    + 'static { }
Expand description

A marker trait for a function type that can be used as a stall scanner.

Implementors§

Source§

impl<T> StallScannerFn for T
where T: Fn(zx_duration_mono_t) + Send + Sync + 'static,