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
Debug
crossterm::cursor::SetCursorStyle
Is your feature request related to a problem? Please describe.
I want to print debugging info for struct that contains the crossterm::cursor::SetCursorStyle enum, but it doesn't implement the Debug trait.
Describe the solution you'd like
Implement Debug trait for crossterm::cursor::SetCursorStyle.
Describe alternatives you've considered if any
N/A.
Additional context
Source code here:
crossterm/src/cursor.rs
Line 374 in 33b4e37
BTW, would you accept a PR for this? I think just add Debug to the #[derive] and add a unit test should work.
#[derive]
The text was updated successfully, but these errors were encountered:
Resolved by: #909
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
I want to print debugging info for struct that contains the
crossterm::cursor::SetCursorStyle
enum, but it doesn't implement theDebug
trait.Describe the solution you'd like
Implement
Debug
trait forcrossterm::cursor::SetCursorStyle
.Describe alternatives you've considered if any
N/A.
Additional context
Source code here:
crossterm/src/cursor.rs
Line 374 in 33b4e37
BTW, would you accept a PR for this? I think just add
Debug
to the#[derive]
and add a unit test should work.The text was updated successfully, but these errors were encountered: