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
I have code for protobuf messages generate with prost, which will be something like
struct Address { line1: prost::alloc::string::String }
for most purposes line1 is just a String and any function that works with one will work with the other.
line1
String
However, because of the following function
validator/validator_derive/src/asserts.rs
Line 72 in 7e7ba65
I can't use the derive annotations
Would it be acceptable to write the check as a match for "String"?
The text was updated successfully, but these errors were encountered:
CompactString
Sorry, something went wrong.
This would be fixed by #205
No branches or pull requests
I have code for protobuf messages generate with prost, which will be something like
for most purposes
line1
is just aString
and any function that works with one will work with the other.However, because of the following function
validator/validator_derive/src/asserts.rs
Line 72 in 7e7ba65
I can't use the derive annotations
Would it be acceptable to write the check as a match for "String"?
The text was updated successfully, but these errors were encountered: