Tyler J. Laing
Results
1
issues of
Tyler J. Laing
Consider this code: ```Rust pub fn create_connection, Environment)> { let conn_str = build_connection_string(&config); let env = create_environment_v3().map_err(|e| e.unwrap()).unwrap(); let conn = env.connect_with_connection_string(&conn_str); (conn, env) } ``` Because Connection is created...
question