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
HexString
The GraphQL server coverts bytes into the hex string to return it to the user. During this convert process, we take vector by value.
We have many cases where we clone vectors instead of passing it as a reference.
This issue is created to replace Vec<u8> with Cow<[u8]> or Cow<Vec<u8>> and allow usage of references.
Vec<u8>
Cow<[u8]>
Cow<Vec<u8>>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The GraphQL server coverts bytes into the hex string to return it to the user. During this convert process, we take vector by value.
We have many cases where we clone vectors instead of passing it as a reference.
This issue is created to replace
Vec<u8>
withCow<[u8]>
orCow<Vec<u8>>
and allow usage of references.The text was updated successfully, but these errors were encountered: