pickx
pickx
many types (for example: `Position` and `Range`) don't derive `Hash`. this makes it hard to use these types if a `HashMap` is needed, without using intermediate types. is there a...
so this is a cool feature (thank you for implementing this, and of course everyone involved in maintaining this extension) that said, coming from my Rust + `rust-analyzer` setup with...
as discussed outside github.
```rust #[bitsize(1)] #[derive(FromBits)] enum A { C, D, } #[bitsize(2)] #[derive(FromBits)] struct Foo { a: [A; 2], } ``` ``` error[E0508]: cannot move out of type `[A; 2]`, a non-copy...
if macro input is invalid, we go straight to `unreachable`, so something like this ```rust #[bitsize(5)] union A { B, } ``` would panic with "entered unreachable code: should have...
one thing I found surprising while working with `toml_edit` after using `toml`, is that `Item` doesn't implement `From`, in contrast with `toml::Value` which does have equivalent `From` implementations. this makes...