mark
mark
Is there any chance of `--out-dir` being stabilized any time soon? It is really useful when integrating cargo with another build system, e.g. Makefile.
@spastorino I'll be missing for a couple of weeks, but I don't mind being added for the `macro_rules` implementation in https://github.com/rust-lang/rust/tree/master/src/libsyntax/ext/tt
@spastorino Yep, that's correct. That's all I have for now :)
> is there any reason for users to use box syntax (apart from it looking nice) given Box::new is inline always, or does that not work? So this is perhaps...
This could possible alleviate my usecase: https://crates.io/crates/copyless
I believe there is a bunch of design work left. In particular, it's not clear how adjacent features like a hypothetical "placement new" syntax would work, and how they would...
Is it too late to request (minor) design changes? I've just now come across this feature in the compiler while review a PR, and I find `let ... else ...`...
Perhaps something like `pub impl` would be useful? A nice side effect of this is that you can have some methods be inherent and not others, even within the Trait...
Also, `pub` is already a reserved word, whereas `inherent` and `exposed` are not, TMK...
> In some code I just don't use traits because of the extra hassles of ensuring they're in the name-space Hmm... I can see why it would be annoying having...