Rose Peck
Rose Peck
# Objective Closes #1481 ## Impulse Often, when adding components and bundles to entities, there are implicit rules about which components can or can't appear with each other. For example,...
([Link](https://docs.rs/bevy_ecs_tilemap/0.4.0/bevy_ecs_tilemap/struct.LayerBuilder.html#method.for_each_tiles_mut)) The docs mention that "The boolean is for visibility". What boolean is being referred to? The `random_map` example also seems to reference a boolean that isn't there.
Hi. I'm currently using `validated-method` with `callpromise-mixin`, and I'm having issues handling errors when my meteor method is marked as async. Specifically, errors thrown with `Meteor.Error` aren't caught in the...
[`parking_lot`](https://crates.io/crates/parking_lot) is great. Its implementations of the sync types are both easier to use, and usually faster. Switching to parking lot types will reduce the need to handle `Result`s on...
The error type from this crate is impossible for downstream crates to use effectively, since it is both private and doesn't implement the `Error` trait. This PR fixes both of...
Currently `ContextValue` is private. This is fine in most cases, but I recently ran into a case where I wanted to iterate over the values in my context for error...
The `Context` API is great, but currently it's annoying to reuse across multiple expressions, since the context can't be cloned. Deriving `Clone` makes fixes this issue and makes it easier...