pub trait DriverListsProxyInterface: Send + Sync {
type GetDriverListsResponseFut: Future<Output = Result<DriverListsGetDriverListsResult, Error>> + Send;
// Required method
fn get_driver_lists(&self) -> Self::GetDriverListsResponseFut;
}Required Associated Types§
type GetDriverListsResponseFut: Future<Output = Result<DriverListsGetDriverListsResult, Error>> + Send
Required Methods§
fn get_driver_lists(&self) -> Self::GetDriverListsResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".