pub type DriverListsGetDriverListsResult = Result<(Vec<String>, Vec<String>), i32>;
enum DriverListsGetDriverListsResult { Ok((Vec<String>, Vec<String>)), Err(i32), }
Contains the success value
Contains the error value