We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, there's no way to clone or define an append-only style extensions list.
We could provide a SharedExtensions type that is based on Arc<dyn Any> instead of Box<dyn Any>, and remove the remove method and get_mut methods.
SharedExtensions
Arc<dyn Any>
Box<dyn Any>
remove
get_mut
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Motivations
Currently, there's no way to clone or define an append-only style extensions list.
Solution
We could provide a
SharedExtensions
type that is based onArc<dyn Any>
instead ofBox<dyn Any>
, and remove theremove
method andget_mut
methods.The text was updated successfully, but these errors were encountered: