Thomas B
Thomas B
### Describe the bug It is possible to construct a BehaviorVersion:  Using the following syntax: ```rust let behavior: BehaviorVersion = BehaviorVersion {}; ``` While the documentation says that `latest`...
### Describe the bug Documentation explicitly specifies that the following fields have defaults:  But they are actually not applied. If the builder doesn't explicitly specify them, they will instead...
On multi-user dev machines (such as is our case), it seems there's no way to prevent one user from sending commands to another user's instance, as it's using a standard...
This allows for unioning bigger sets if necessary, but also doesn't necessarily change the storage size because it may still downsize to an u32 in from_index. This shouldn't change anything...
That is more future-proof, and will integrate better with other crates.
Some projects need the connected component traversal feature. However, that feature was removed from *ena* for performance reasons: preserving the data required for connected component traversal introduced an overhead that...
`get_many_mut` on slices (https://github.com/rust-lang/rust/pull/83608) does not *need* to handle a variable number of keys (although it might be nice) because, worse case scenario, you can sort your input array of...
example
Can't find any example of how this library is supposed to be used, for client or server. (specifically I need server.) Could this be added to the documentation?
In some cases, specific initialization/cleanup needs to be done around managed connections when fetching them from the pool and releasing them to the pool. e.g.: 1. https://github.com/diesel-rs/diesel/issues/3252 with solution suggested...
Since `&mut T where T: Iterator` also implements `Iterator` (https://doc.rust-lang.org/stable/std/iter/trait.Iterator.html#impl-Iterator-13), the iterator functions do not take `&mut self` but `self`. For reference, the currently unstable [`std is_sorted`](https://doc.rust-lang.org/stable/std/iter/trait.Iterator.html#method.is_sorted). Also, currently and...