Aria Desires
Aria Desires
It's an explicit problem for anyone who tries to implement a parser and tries to use tools "for" context-free-grammars, which is like, the standard (bad) tooling everyone recommends. I don't...
wait this sounds bigger than a minor documentation issue, are we failing to FFI correctly on i686-pc-windows-msvc
I don't know the precise wording the reference likes, but yes repr(rust) must align all of its fields. Zero-sized-types must *also* be completely aligned. Most have align 1 so they...
This is a thing: https://github.com/bryant/argon2rs
I'm a huge fan of this proposal. When writing the rustonomicon this was one of the few major details of rust I couldn't really get a straight answer from anyone...
Drop bombs are usually being used to cover up for things you would want to be compile-time errors, so it's not at all clear to me that you would care...
@reem I don't think it's as easy as that. &T is often _less_ restrictive, in that much more general code structures are valid with & and than &mut. You can...
> override the definition and link against a mildly fictional version of external C code, redeclaring a C uintptr_t as *mut T instead See https://github.com/rust-lang/rust/issues/95496 for more details -- some...
No one is currently implementing it, and no one has made a solid specification of what it would look like. If it happens, it will not be for a long...
Part of the problem is that everything is really generic and it's unclear how anything has anything. For instance, if you look at any [PistonWindow example](https://github.com/PistonDevelopers/piston-examples/blob/master/src/hello_world.rs#L23-L34) You will see `e.draw_2d`,...