use core::{any::TypeId, cmp::Ordering};
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum StorageId {
TypeId(TypeId),
Custom(u64),
}
impl StorageId {
pub fn of<T: 'static>() -> Self {
TypeId::of::<T>().into()
}
}
impl From<TypeId> for StorageId {
fn from(type_id: TypeId) -> Self {
StorageId::TypeId(type_id)
}
}
impl From<u64> for StorageId {
fn from(int: u64) -> Self {
StorageId::Custom(int)
}
}
impl PartialEq<TypeId> for StorageId {
fn eq(&self, type_id: &TypeId) -> bool {
if let StorageId::TypeId(self_type_id) = self {
self_type_id == type_id
} else {
false
}
}
}
impl PartialOrd<TypeId> for StorageId {
fn partial_cmp(&self, type_id: &TypeId) -> Option<Ordering> {
if let StorageId::TypeId(self_type_id) = self {
self_type_id.partial_cmp(type_id)
} else {
Some(Ordering::Less)
}
}
}
impl Default for StorageId {
fn default() -> Self {
StorageId::Custom(u64::MAX)
}
}
impl core::fmt::Debug for StorageId {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
let mut debug_struct = f.debug_struct("StorageId");
match self {
StorageId::TypeId(type_id) => {
debug_struct.field("TypeId", type_id);
}
StorageId::Custom(custom) => {
debug_struct.field("Custom", custom);
}
}
debug_struct.finish()
}
}