pub trait DriverNotifierProxyInterface: Send + Sync {
// Required method
fn new_driver_available(&self) -> Result<(), Error>;
}Required Methods§
fn new_driver_available(&self) -> Result<(), Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".