1#[derive(Debug, Clone, Default, PartialEq, Eq, PartialOrd, Ord, Hash)] 2pub enum Shard { 3 #[default] 4 Singleton, 5 ById(u64), 6}