We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4db2303 commit b89de82Copy full SHA for b89de82
1 file changed
src/unix/mod.rs
@@ -258,12 +258,12 @@ cfg_if! {
258
if #[cfg(feature = "extra_traits")] {
259
impl PartialEq for __c_anonymous_sigaction_handler {
260
fn eq(&self, other: &__c_anonymous_sigaction_handler) -> bool {
261
- unsafe{ self.default == other.default };
+ unsafe{ self.default == other.default }
262
}
263
264
impl Eq for __c_anonymous_sigaction_handler{}
265
impl fmt::Debug for __c_anonymous_sigaction_handler {
266
- fn fmt(&self, f: &mut fmt::Formatter) -> ::fmt::Result
+ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result
267
{
268
f.debug_struct("sigaction_t")
269
.field("value", unsafe{ &self.default })
0 commit comments