pub type Symbol = Interned<'static, str>;
#[repr(transparent)]pub struct Symbol(pub &'static str, pub Private);
0: &'static str
1: Private
Types which implement AsRef<str> will be stored in the global StringInterner
AsRef<str>