Things we did:

  • Response API
    • Submitted PR to wrap hyper::header::Headers in Rc. This solution may or may not work for the Response API, however, because Rc doesn’t work across threads. Instead of manipulating the same object in multiple places, I might end up having to just work with one version of hyper::header::Headers, or replace Rc with Arc.
  • Request API
    • Request got merged!
    • Then someone kindly pointed out I wrote step 31 wrong, so I fixed it!
  • Headers Iterable
    • Started looking into how to implement iterable for Headers based on jdm’s branch.
    • For some reason, by allowing iterable, HeadersBinding::Wrap becomes undefined..? What??
  • General:
    • Wrote a blog post about the Rust borrow system.

Things we learned:

TODO:

  • Response API:
    • Figure out what to do with the Rc PR, and then finally work on dom::Response
  • Headers Iterable
    • Figure out what is going on!