Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Use Cow<'static, str> for Metadata strings #1020
Use Cow<'static, str> for Metadata strings #1020
Changes from all commits
5868a6d
f40de7b
ed04e30
645c133
5a69f07
f922cc1
fa4a808
183f75f
97e5b31
028ae65
a3661f8
f0a6443
a9a0568
2ee5da9
d8afcbe
381d574
8913759
b250109
e29d3ca
f7274dc
b3bec86
fda189b
c46c352
7b0dfe5
280f0bf
4225d96
f42a644
47e9cd5
de588f4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while with this we now have general support for dynamic creation, the current API, still won't allow for that. Probably want to add another
fn dynamic_new
where we can passCow<'a, str>
into for dynamic dispatching.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am afraid so ....