【Rust】ipv6へのreqwestのURLの指定

async fn post_test() -> Result<(), Box<dyn std::error::Error>> {
    let result = reqwest::get("http://[::ffff:c0a8:210a]:3000/health").await;
    println!("{:?}", result);
    Ok(())
}

Ok(Response { url: Url { scheme: “http”, cannot_be_a_base: false, username: “”, password: None, host: Some(Ipv6(::ffff:192.168.33.10)), port: Some(3000), path: “/health”, query: None, fragment: None }, status: 200, headers: {“content-type”: “text/plain; charset=utf-8”, “content-length”: “10”, “date”: “Wed, 05 Mar 2025 11:29:56 GMT”} })

ちなみに、ipv4だと 以下のようになる。
let result = reqwest::get(“http://192.168.33.10:3000/health”).await;