Diggory Blake

Results 286 comments of Diggory Blake

The `Backtrace` type can be resolved before it is formatted, but as a result of `Symbol` not being `Clone`, there's no way to do this with the raw API?

Yep 👍 I think I would also need a similar conversion for `Frame` in order to use the formatter?

I have this issue when behind my work's corporate proxy, and I'm fairly certain this is not a cargo issue. In my case, the intermediate certificate used by the proxy...

Is there a reason this doesn't work with `cargo rustc`?

Header dependency tracking is something of a solved problem AIUI - you just need to invoke the compiler with certain flags, so the real challenge there will be getting a...

Yes, the output from the build file is saved to `target//build//output` (note there will be multiple directories with your crate name and a different hash). After a clean build there...

It should display up to the first N values, followed by an ellipsis if the sequence continues.

Iterating any of the containers could _potentially_ have side-effects given the ability to define properties in JS. I think in this case it's unlikely given the nature of code using...

These all sound like great ideas! I'd definitely be open to accepting new examples, and if there's anything that you think would be reusable it might make sense to have...

Yeah, at the moment only `&mut self` is usable with `send!` and/or `call!`. To run things concurrently you should use `send_fut_with` or `send_fut`. There's a more complicated example here: https://github.com/Diggsey/raft-zero...