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
because of this the derive macro will not work from within a function
for now to fix this you will need to move the struct definition to outside the function or you could put a module around the struct definitions:
fn foo { mod i_64079 { // put definitions here } use i_64079::*; }
The text was updated successfully, but these errors were encountered:
add some varint tests + mark lib example as ignore
fd143f0
as it suffers from #1
No branches or pull requests
because of this the derive macro will not work from within a function
for now to fix this you will need to move the struct definition to outside the function or you could put a module around the struct definitions:
The text was updated successfully, but these errors were encountered: