-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing Reflect impl for VecDeque #5791
Labels
Comments
ItsDoot
added
C-Feature
A new feature, making something new possible
S-Needs-Triage
This issue needs to be labelled
labels
Aug 25, 2022
NathanSWard
added
A-Reflection
Runtime information about types
and removed
S-Needs-Triage
This issue needs to be labelled
labels
Aug 25, 2022
bors bot
pushed a commit
that referenced
this issue
Sep 7, 2022
# Objective Fixes #5791 ## Solution Implemented all the required reflection traits for `VecDeque`, taking from `Vec`'s impls.
bors bot
pushed a commit
that referenced
this issue
Sep 19, 2022
# Objective Fixes #5791 ## Solution Implemented all the required reflection traits for `VecDeque`, taking from `Vec`'s impls.
bors bot
pushed a commit
that referenced
this issue
Sep 19, 2022
# Objective Fixes #5791 ## Solution Implemented all the required reflection traits for `VecDeque`, taking from `Vec`'s impls.
bors bot
pushed a commit
that referenced
this issue
Sep 19, 2022
# Objective Fixes #5791 ## Solution Implemented all the required reflection traits for `VecDeque`, taking from `Vec`'s impls.
Repository owner
moved this from In Progress
to Done
in Reflection
Dec 11, 2022
alradish
pushed a commit
to alradish/bevy
that referenced
this issue
Jan 22, 2023
# Objective This is an adoption of bevyengine#5792. Fixes bevyengine#5791. ## Solution Implemented all the required reflection traits for `VecDeque`, taking from `Vec`'s impls. --- ## Changelog Added: `std::collections::VecDeque` now implements `Reflect` and all relevant traits. Co-authored-by: james7132 <[email protected]>
ItsDoot
added a commit
to ItsDoot/bevy
that referenced
this issue
Feb 1, 2023
# Objective This is an adoption of bevyengine#5792. Fixes bevyengine#5791. ## Solution Implemented all the required reflection traits for `VecDeque`, taking from `Vec`'s impls. --- ## Changelog Added: `std::collections::VecDeque` now implements `Reflect` and all relevant traits. Co-authored-by: james7132 <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
What problem does this solve or what need does it fill?
It would be nice to be able to use a queue/stack like data structure in components;
VecDeque
fits that.What solution would you like?
Implement the reflect family of traits for VecDeque.
What alternative(s) have you considered?
Using
Vec
, which is annoying to use as a queue.The text was updated successfully, but these errors were encountered: