-
Notifications
You must be signed in to change notification settings - Fork 45
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
Derive 'Debug' for LittleEndian
and BigEndian
#33
Comments
going to leave open until i make a release including the commit |
cole14
added a commit
that referenced
this issue
Jun 8, 2023
This helps ensure we're deriving Debug, as it's generally always helpful. This helps avoid issues like #33
cole14
added a commit
that referenced
this issue
Oct 9, 2023
This helps ensure we're deriving Debug, as it's generally always helpful. This helps avoid issues like #33
Released as v0.7.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider the following code snippet, rustc rejects to debug-print
elf_file.ehdr
because it does not implement 'Debug', caused by thatLittleEndian
does not implement 'Debug'. This is probably undesirable, so I suggestLittleEndian
andBigEndian
shall derive Debug.The text was updated successfully, but these errors were encountered: