# Nexusmods API.rs Rust client for the Nexusmods API. ## Example ```rs use nexusmods_api_rust_client::*; use tokio; #[tokio::main] async fn main() -> Result<(), Box> { let nexusmods = NexusMods::new().await?; let mods = nexusmods.get_trending_mods("skyrim").await?; println!("{:?}", mods); Ok(()) } ```