In this library breaking changes occur often as it's in alpha. Roblox also sometimes changes apis although that's rare.
use roblox_api::{api::users, client::Client};
#[tokio::main]
async fn main() {
let mut client = Client::default();
let user = users::v1::user_details(&mut client, 1).await.unwrap();
println!("Name: {}", user.name);
}Before writing any pull-requests please write an issue first.