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
According to the docs, private fields are ignored. However if the field's type is something the library can't handle, an error is reported:
type M struct { Int int private interface{} }
The error doesn't make sense IMO since the field is going to be ignored anyway.
Using struc:"skip" as the workaround currently.
struc:"skip"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to the docs, private fields are ignored. However if the field's type is something the library can't handle, an error is reported:
The error doesn't make sense IMO since the field is going to be ignored anyway.
Using
struc:"skip"
as the workaround currently.The text was updated successfully, but these errors were encountered: