We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1143268 commit 4db2303Copy full SHA for 4db2303
1 file changed
src/unix/mod.rs
@@ -262,16 +262,16 @@ cfg_if! {
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
+ impl fmt::Debug for __c_anonymous_sigaction_handler {
+ fn fmt(&self, f: &mut fmt::Formatter) -> ::fmt::Result
267
{
268
f.debug_struct("sigaction_t")
269
.field("value", unsafe{ &self.default })
270
.finish()
271
272
273
- impl ::hash::Hash for __c_anonymous_sigaction_handler {
274
- fn hash<H: ::hash::Hasher>(&self, state: &mut H) {
+ impl hash::Hash for __c_anonymous_sigaction_handler {
+ fn hash<H: hash::Hasher>(&self, state: &mut H) {
275
unsafe{ self.default.hash(state) };
276
277
0 commit comments