Trait DriverShutdownObserverFn

Source
pub trait DriverShutdownObserverFn<T: 'static>:
    FnOnce(DriverRef<'static, T>)
    + Send
    + Sync
    + 'static { }

Implementors§

Source§

impl<T, U: 'static> DriverShutdownObserverFn<U> for T
where T: FnOnce(DriverRef<'static, U>) + Send + Sync + 'static,