登录 注册
当前位置:主页 > 资源下载 > 50 > Rust 的 HTTP 库:rust-http

Rust 的 HTTP 库:rust-http

  • 更新:2024-09-16 21:50:44
  • 大小:11KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

Rust 的 HTTP 库 一个简单的 Rust HTTP 库。 因为学习。 extern crate http; fn main () { let response = match http :: get ( "http://www.google.com" ) { Ok (resp) => resp, _ => panic! ( "There was a problem making the request" ), }; if response.status_code as int == 200 { println! ( "Time according to Google: {}" , response.headers. get ( "date" )) } }