Skip to content
2 changes: 1 addition & 1 deletion src/c1_state_machine/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub trait StateMachine {
}

/// A set of play users for experimenting with the multi-user state machines
#[derive(Hash, Eq, PartialEq, Debug, Clone)]
#[derive(Hash, Eq, PartialEq, Debug, Clone, Ord, PartialOrd)]
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we also won't need these traits if we use a HashMap for deduplicating

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

true

pub enum User {
Alice,
Bob,
Expand Down
Loading