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
I noticed some functions return Box<dyn Error>, when they can just return the error code. Is this intentional?
Box<dyn Error>
libuv-rs/src/handles/fs_event.rs
Lines 136 to 161 in df3f9e1
The text was updated successfully, but these errors were encountered:
The only reason I see is CString::new usage, but we can safely .unwrap() thanks to the UTF-8 guarantee
CString::new
.unwrap()
Sorry, something went wrong.
No branches or pull requests
I noticed some functions return
Box<dyn Error>
, when they can just return the error code. Is this intentional?libuv-rs/src/handles/fs_event.rs
Lines 136 to 161 in df3f9e1
The text was updated successfully, but these errors were encountered: