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
We can simplify some statements like so to improve code readability and maintainability.
X11Error::Xlib(e) => write!(f, "Xlib error: {e}"), X11Error::Connect(e) => write!(f, "X11 connection error: {e}"), X11Error::Connection(e) => write!(f, "X11 connection error: {e}"), X11Error::XidsExhausted(e) => write!(f, "XID range exhausted: {e}"), X11Error::GetProperty(e) => write!(f, "Failed to get X property {e}"), X11Error::X11(e) => write!(f, "X11 error: {e:?}"), X11Error::UnexpectedNull(s) => write!(f, "Xlib function returned null: {s}"),
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
We can simplify some statements like so to improve code readability and maintainability.
The text was updated successfully, but these errors were encountered: