forked from mirror/async-std
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
Rust
18 lines
411 B
Rust
5 years ago
|
use async_std::task;
|
||
|
|
||
|
fn main() -> Result<(), surf::Exception> {
|
||
|
task::block_on(async {
|
||
|
let url = "https://www.rust-lang.org";
|
||
|
let mut response = surf::get(url).await?;
|
||
|
let body = response.body_string().await?;
|
||
|
|
||
|
dbg!(url);
|
||
|
dbg!(response.status());
|
||
|
dbg!(response.version());
|
||
|
dbg!(response.headers());
|
||
|
dbg!(body.len());
|
||
|
|
||
|
Ok(())
|
||
|
})
|
||
|
}
|