pub trait ErasedKey:
Any
+ Send
+ Sync
+ 'static {
// Required methods
fn name(&self) -> &'static str;
fn key_hash(&self) -> u64;
fn typehash(&self) -> u64;
fn typename(&self) -> &'static str;
}Expand description
A trait for type-erased keys.