Ian Jackson

Results 126 comments of Ian Jackson

This would be a convenience method, equivalent roughly to `*self.borrow_mut() = value`.

> actix-web does not filter out response body(http/2 specific) for HEAD method Hrrm. It works correctly for http1; I just tried it again by hand. That sounds like a bug...

Oh wait. That doesn't seem to be doing http2 in fact.

And ``` $ curl --http2 --http2-prior-knowledge -v http://localhost:8080/foo * Expire in 0 ms for 6 (transfer 0x5593489ebfb0) ... * Trying 127.0.0.1... * TCP_NODELAY set * Expire in 200 ms for...

I looked at this again, and I think what is happening is that actix does not support http2 outside TLS. For my application I think this means everything is fine,...

> > I wonder if `ErroKind` ought to be marked `#[non_exhaustive]` for future-proofing. > > This sounds like a good idea. I'm all for it. Cool. I will send a...

> ```rust > #[derive(FromForm)] > struct Foo > ``` Thanks for this helpful suggestion. I hadn't thought of this approach, I think because I had forgotten about the impls on...

Thanks. I wonder whether we are talking at cross purposes. You have tagged this ticket as "bug" but I don't think I am reporting any behaviour which is contrary to...

The RFC text (in the Downsides) ought IMO to discuss the "drop bomb" pattern, sometimes used to simulate linear types - or rather, to avoid shipping code which treats a...

In the Prior Art section, you might want to list the Xen Project: https://xenproject.org/developers/security-policy/ As a longstanding member of the Xen Project Security Team I read through the RFC with...