Trait DriverShutdownObserverFn

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

A marker trait for a function that can be used as a driver shutdown observer with Driver::shutdown.

Implementors§

Source§

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