Skip to content

Commit

Permalink
Handle: impl PartialEq, Eq, PartialOrd, Ord
Browse files Browse the repository at this point in the history
  • Loading branch information
yayanyang committed Mar 17, 2024
1 parent e240837 commit 91e7a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/syscall/src/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use std::any::TypeId;

/// A transparent type pointer that represents any implementation-related asynchronous system type.
#[derive(Debug)]
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Handle {
data: *const (),
drop: fn(*const ()),
Expand Down

0 comments on commit 91e7a5e

Please sign in to comment.