Erioifpuderio.hashnode.dev·Aug 5, 2024遇到的 Rust 所有权转移问题let client = reqwest::Client::new(); let res = client .get(url) .send() .await; match res { Ok(v) => { let text = v.text().await.unwrap(); let headers = v.headers().clone(); println!("{}", text.clone()); ...RustAdd a thoughtful commentNo comments yetBe the first to start the conversation.