From 43a2484c22f66b1f2e4fcfa9027e0dfe47d46fdc Mon Sep 17 00:00:00 2001 From: Malik Olivier Boussejra Date: Sun, 15 Apr 2018 11:36:14 +0900 Subject: [PATCH] ImMouseButton: Derive Copy, Clone, Eq, PartialEq, Debug For convenience. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 753d9db..8d0bbf3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -87,6 +87,7 @@ pub fn get_version() -> &'static str { } /// Represents one of the buttons of the mouse +#[derive(Copy, Clone, Eq, PartialEq, Debug)] pub enum ImMouseButton { Left = 0, Right = 1,