use std::{convert::Infallible, str::FromStr}; /// An unique id that is associated with a menu or a menu item. #[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Default, Hash)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub struct MenuId(pub String); impl MenuId { /// Create a new menu id. pub fn new>(id: S) -> Self { Self(id.as_ref().to_string()) } } impl AsRef for MenuId { fn as_ref(&self) -> &str { self.0.as_ref() } } impl From for MenuId { fn from(value: T) -> Self { Self::new(value.to_string()) } } impl FromStr for MenuId { type Err = Infallible; fn from_str(s: &str) -> std::result::Result { Ok(Self::new(s)) } } impl PartialEq<&str> for MenuId { fn eq(&self, other: &&str) -> bool { self.0 == *other } } impl PartialEq<&str> for &MenuId { fn eq(&self, other: &&str) -> bool { self.0 == *other } } impl PartialEq for MenuId { fn eq(&self, other: &String) -> bool { self.0 == *other } } impl PartialEq for &MenuId { fn eq(&self, other: &String) -> bool { self.0 == *other } } impl PartialEq<&String> for MenuId { fn eq(&self, other: &&String) -> bool { self.0 == **other } } impl PartialEq<&MenuId> for MenuId { fn eq(&self, other: &&MenuId) -> bool { other.0 == self.0 } } #[cfg(test)] mod test { use crate::MenuId; #[test] fn is_eq() { assert_eq!(MenuId::new("t"), "t",); assert_eq!(MenuId::new("t"), String::from("t")); assert_eq!(MenuId::new("t"), &String::from("t")); assert_eq!(MenuId::new("t"), MenuId::new("t")); assert_eq!(MenuId::new("t"), &MenuId::new("t")); assert_eq!(&MenuId::new("t"), &MenuId::new("t")); assert_eq!(MenuId::new("t").as_ref(), "t"); } }