pub trait DriverListsProxyInterface: Send + Sync {
type GetDriverListsResponseFut: Future<Output = Result<DriverListsGetDriverListsResult, Error>> + Send;
// Required method
fn get_driver_lists(&self) -> Self::GetDriverListsResponseFut;
}