Marvin Löbel
Marvin Löbel
It might be possible to provide a macro for generating such a type alias though: ``` units_alias! { pub type Meter2 = Meter * Meter; } // Expands to pub...
I'll try to throw something up if I have time to work on this again, sadly this is just a hobby project with no high priority for me, so I...
Afaik the official stance is that keywords can be added without bumping the major version by adding an attribute for enabling them.
Yeah, treating the `become` expression having a lifetime scope outside of the function body seems like the simplest approach for this, and can also be easily explained by analogy to...
The issue with re-creating a stackframe is references: ``` > let a = 5; > let b = &a; // can't change a's memory location after this ``` Are we...
I've also run into this on 0.5. I want to generate an URL with an encrypted query parameter for which the existing cookie secret would be the perfect fit. I...
Would there be interest for a PR that adds a API as proposed here?
> > I expected to see this happen: Both `check1` and `check2` should compile to functions that just return a compiletime-evaluated struct value > > That's not possible, those functions...
> So I wonder if that's what we should be tracking here; if reachability determines something is reachable but only at compile time. That seems like what this ought to...
Hi, I'm [sincerely sorry for taking so long to respond.](https://gist.github.com/Kimundi/9b10629d29adbf163d8eb053ddaa1f38) I just merged https://github.com/Kimundi/owning-ref-rs/pull/17, which enables the usecase for giving mutable access to the internal mutability handles like RefCell. I'd...