use yts_api; #[tokio::main] async fn main() -> Result<(), Box> { let movie = yts_api::MovieDetails::new(10) .with_images(true) .with_cast(true) .execute() .await?; println!("{:#?}", movie); Ok(()) }